我是Selenium网络驱动器的新手。尝试执行一些页面自动化并使用driver.wait
函数先等待选择器呈现,然后再执行一些操作。
想知道如果元素在 x 秒后未显示,Selenium 是否有办法传递超时处理程序来管理超时。
这是我的代码:
driver.wait(function () {
return driver.isElementPresent(webdriver.By.css('input[id="searchMap"]'));
}, 10000);
因此,10 秒后,如果input[id="searchMap"]
没有出现,Selenium 脚本将结束并抛出错误。
我正在寻找这样的东西:
driver.wait(function () {
return driver.isElementPresent(webdriver.By.css('input[id="searchMap"]'));
}, 10000, function fail(){
console.log("Time is up!");
});
自己找到了解决方案。必须使用catch
硒promise
类。
http://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/promise_exports_Promise.html
这是我的代码:
driver.wait(function () {
return driver.isElementPresent(webdriver.By.css('div.info-page'));
}, 10000).catch(function(e){
console.log('Catching Error');
});