gpt4 book ai didi

angular - 在 headless 模式下,元素不可点击。但是当我们从 protractor.conf.js 中删除 headless 时,它工作正常。

转载 作者:太空狗 更新时间:2023-10-29 18:08:01 24 4
gpt4 key购买 nike

element(by.className('cuppa-dropdown')).element(by.className('dropdown-list')).element(by.className('list-area')).element(by.tagName('li')).click();

实际上这个元素是弹出的。它在 headless 模式下运行良好。但是由于我们需要通过内置 vsts 来自动化测试用例,我们需要以 headless 模式执行测试

失败:未知错误:元素在点 (863, 343) 不可点击( session 信息:headless chrome=63.0.3239.84)(驱动程序信息:chromedriver=2.34.522940 (1a76f96f66e3ca7b8e57d503b4dd3bccfba87af1),平台=Windows NT 10.0.16299 x86_64)

最佳答案

正如上面的回答,尝试将窗口大小设置为 chrome 的参数

chromeOptions: {
args: [
'--window-size=1920,1080'],

setTimeout(function() {
browser.driver.executeScript(function() {
return {
width: window.screen.availWidth,
height: window.screen.availHeight
};
}).then(function(result) {
browser.driver.manage().window().setPosition(0,0);
browser.driver.manage().window().setSize(result.width, result.height);
});
});

关于angular - 在 headless 模式下,元素不可点击。但是当我们从 protractor.conf.js 中删除 headless 时,它工作正常。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47776774/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com