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 模拟测试的有效设备名称是什么?


- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01