如果浏览器启用了触控功能,我会激活一个组件。
在量角器中模拟触控启用浏览器的最佳方法是什么(类似于chrome开发人员工具中的设备模式)。
解决:
当通过量角器打开时,Chrome似乎没有激活触摸,因此在我的protractor.conf.js文件中,我执行了以下操作:
exports.config = {
multiCapabilities: [{
browserName: 'chrome',
chromeOptions: {
mobileEmulation: {
deviceName: 'Apple iPhone 5'
},
args: [
'--touch-events=enabled'
]
}
}
]
}