webdriver.io's what's new in v4.0 docs说“这都是同步的...现在所有命令都会阻止测试过程的执行,直到它们解决了。”
我能找到的同步WebDriver代码的唯一例子是:
browser.url('/');
var title = browser.getTitle();
当我执行类似的操作时(通过note test.js
,而不是wdio
):
var webdriverio = require('webdriverio');
var options = {
desiredCapabilities: {
browserName: 'chrome',
logLevel: 'silent'
}
};
const driver = webdriverio.remote(options)
driver.url('http://www.google.com')
const title = driver.getTitle()
console.log('title', title)
...标题是title { state: 'pending' }
,表明它是一个承诺。我怎样才能说服它以同步方式运行,理想情况下不必使用async / await?
答案 0 :(得分:1)
启动浏览器后
const client = webdriverio.remote(options).init()
webdriver.io和chrome浏览器存在一个众所周知的问题,它不属于这个awnser的一部分,但结果也会解释你的问题。 Chrome在低硬件PC上冻结,如果你运行webdriver.io命令,直到chrome完全加载你的脚本崩溃。解决方法是将其作为示例:
client
.url('http://localhost/dashboard')
.waitForVisible('body', 20000000).then(function(isExisitingLOCALHOST){
//.. you may add here aswell a timeout if your hardware is really low and has really long freezing.
client
.url('http://yourwebsite.com') // <-- webdriver.io will wait until your loading icon from the tab is ready. This means at ajax websites you must build aswell a workaround with the waitForVisible() endpoint. As example waiting for a specific item to load logo, text etc.
.click('#sample')
})
通过这个小的解决方法,您可以确保在启动过程中避免冻结浏览器并等到它完成。这解释了与webdriver.io的同步写作方式
您可以通过无尽的同步方式制作webdriver.io API端点:
client
.click()
.pause(1000)
.rightClick()
同样非常重要的是要知道pause()在某些方面确实是错误的并且它不会同步,有时它不起作用..你应该使用javascript的基本setTimeout代替。
您也可以这样写
client.getText('#sample1');
client.getText('#sample2');
处理彼此相邻的多个api端点。