使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?

What are valid deviceNames for Chrome emulation testing with Protractor?(使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?)
本文介绍了使用 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 Check if Element Does Not Exist(量角器检查元素是否不存在)
Protractor e2e Tests Login Redirection(Protractor e2e 测试登录重定向)
Explain about async/ await in Protractor(解释 Protractor 中的 async/await)
Protractor browser.wait doesn#39;t wait(量角器 browser.wait 不等待)
How to use Protractor with Angular 2?(如何在 Angular 2 中使用量角器?)
how test separate environmental name with protractor conf js?(如何使用量角器 conf js 测试单独的环境名称?)