selenium:导航到页面之前显示的ManagedPromise :: 32 {[[PromiseStatus]]:“pending”}消息

时间:2017-01-18 07:41:22

标签: javascript node.js selenium selenium-webdriver

我尝试了以下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

attributes: show-coordinates

实际: 在导航到URL本身之前,请使用以下消息打印attributes:

attributes: ManagedPromise::32 {[[PromiseStatus]]: "pending"}

环境:

Windows 7 - 64 bit
selenium-webdriver (installed using `npm install selenium-webdriver`)
ChromeDriver
Chrome

1 个答案:

答案 0 :(得分:2)

您需要使用then();

从返回的承诺中提取值

所有webdriver命令都会将promise作为promise Manager的一部分返回。这使您可以编写

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回调来提取该值。所以你的代码变成了:

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();