What are valid deviceNames for Chrome emulation testing with Protractor?(使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?)
问题描述
常见的网络共识似乎是,如果您在 chrome 模拟器中看到一个名称,您可以在量角器配置中按原样使用它......所以我尝试了 Apple iPad
:
The common web consensus seems to be that if you see a name in your chrome emulator, you can use it as-is in your protractor config ... so I tried Apple iPad
:
{
browserName: 'chrome',
chromeOptions: {
mobileEmulation: {
deviceName: 'Apple iPad'
}
}
}
但我不得不在审判之前混日子错误产生了正确的 deviceName 为:Apple iPad 3/4
But I had to muck around until trial & error yielded the correct deviceName to be: Apple iPad 3 / 4
现在我在这里搜索过:https://developer.chrome.com/devtools/docs/device-mode#enable-device-mode 和这里:https://sites.google.com/a/chromium.org/chromedriver/mobile-emulation但我找不到所有有效设备名称的列表.任何想法在哪里得到它?
Now I've searched here: https://developer.chrome.com/devtools/docs/device-mode#enable-device-mode and here: https://sites.google.com/a/chromium.org/chromedriver/mobile-emulation but I can't find a list of all the valid deviceNames. Any ideas where to get it?
在 https://code.google.com/p/chromium/codesearch我发现:https://code.google.com/p/chromium/codesearch#chromium/src/third_party/WebKit/Source/devtools/front_end/emulated_devices/module.json&q=%22Apple%20iPad%22&sq=package:chromium&type=cs&l=643
但这并不是真正重要的源代码.
But that's not really the source code that matters.
也许其他地方的 chrome webdriver 的源代码可能有一个枚举列表,但我找不到它,感谢任何帮助!
Maybe the source code for chrome webdriver somewhere else may have an enumerated list but I couldn't find it, any help is appreciated!
推荐答案
所以我找到了一些来源,但它们似乎引用了不再存在的链接.这似乎是我能找到的最好结果?
So I found some sources but they seemed to referencing links that didn't exist anymore. This seems to be the best result I could find?
https://code.google.com/p/chromium/codesearch#chromium/src/third_party/WebKit/Source/devtools/front_end/emulation/OverridesUI.js&l=338
这个列表似乎是主列表https://code.google.com/p/chromium/codesearch#chromium/src/chrome/test/chromedriver/chrome/mobile_device_list.cc
这篇关于使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?
基础教程推荐
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01