我尝试了以下selenium-webdriverJS代码:
var webdriver = require('selenium-webdriver'); var browser = new webdriver.Builder().usingServer().withCapabilities({'browserName': 'chrome' }).build(); browser.get('http://localhost:1091/WebTours/sample.html'); var btn = browser.findElement(webdriver.By.id('show-coordinates')); browser.sleep(3000); var ids = btn.getAttribute("id"); console.log("attributes: " + ids); //expecting to run after above lines. browser.quit();
预期: 导航到给定的URL,找到元素,然后id按如下所示打印属性:
id
attributes: show-coordinates
实际: 在导航到URL本身之前,attributes:显示以下消息:
attributes:
attributes: ManagedPromise::32 {[[PromiseStatus]]: "pending"}
环境:
Windows 7 - 64 bit selenium-webdriver (installed using `npm install selenium-webdriver`) ChromeDriver Chrome
您需要从使用以下方法返回的承诺中提取值: then();
then();
所有的webdriver命令都将诺言作为诺言管理器的一部分返回。这使您能够编写
driver.findElement(By.css('#searchBar')).clear(); driver.findElement(By.css('#searchBar')).sendKeys('hello'); driver.findElement(By.css('#searchButton')).click();
不必像这样将它们链接起来:
driver.findElement(By.css('#searchBar')).clear().then(function() { driver.findElement(By.css('#searchBar')).sendKeys('hello').then(function(){ driver.findElement(By.css('#searchButton')).click(); }); })
但是getAttribute(),和许多Webdriver JS命令一样,它返回一个值。在这种情况下,您需要注册一个promise回调以提取该值。因此,您的代码变为:
getAttribute()
browser.get('http://localhost:1091/WebTours/sample.html'); var btn = browser.findElement(webdriver.By.id('show-coordinates')); browser.sleep(3000); var ids = btn.getAttribute("id").then(function(promiseResult){ console.log("attribute is: " + promiseResult); }); browser.quit();