量角器 - 触摸模拟

时间:2017-04-18 12:05:37

标签: javascript protractor touch

如果浏览器启用了触控功能,我会激活一个组件。

在量角器中模拟触控启用浏览器的最佳方法是什么(类似于chrome开发人员工具中的设备模式)。

解决:

当通过量角器打开时,Chrome似乎没有激活触摸,因此在我的protractor.conf.js文件中,我执行了以下操作:



exports.config = {
  multiCapabilities: [{
      browserName: 'chrome',
      chromeOptions: {
        mobileEmulation: {
          deviceName: 'Apple iPhone 5'
        },
        args: [
          '--touch-events=enabled'
        ]
      }
    }
  ]
}




0 个答案:

没有答案