selenium webdriver getText返回[object object]

时间:2014-07-17 19:38:49

标签: javascript node.js selenium webdriver gettext

我有一个selenium脚本,它应该在包含所需值的单元格之后从表格列中获取文本。

我有脚本工作,但出于某种原因,当我运行getText()并检查返回的值时,我在node.js控制台中得到[Object Object] ...我很困惑我试图将其解析为一个字符串,我已经调用了变量上的getText()作为元素和其他几种方法,但无济于事......

以下是我所讨论的剧本部分:

if(tempID!=1){
//tr[contains(td[1], "ID#")]/td[#]  
scrapeArray[0] = tempID;
console.log(scrapeArray[0]);
}
}).then(function(){
scrapeArray[1] = String(driver.findElement(webdriver.By.xpath('//tr[contains(td[1], "'+tempID+'")]/td[2]')).text());
console.log("1: "+scrapeArray[1]);
}).then(function(){
scrapeArray[2] = String(driver.findElement(webdriver.By.xpath('//tr[contains(td[1], "'+tempID+'")]/td[3]')).text());
console.log("2: "+scrapeArray[2]);
}).then(function(){
scrapeArray[3] = String(driver.findElement(webdriver.By.xpath('//tr[contains(td[1], "'+tempID+'")]/td[4]')).text());
console.log("3: "+scrapeArray[3]);
}).then(function(){
scrapeArray[4] = String(driver.findElement(webdriver.By.xpath('//tr[contains(td[1], "'+tempID+'")]/td[5]')).text());
console.log("4: "+scrapeArray[4]);
}).then(function(){
scrapeArray[5] = String(driver.findElement(webdriver.By.xpath('//tr[contains(td[1], "'+tempID+'")]/td[6]')).text());
console.log("5: "+scrapeArray[5]);
}).then(function(){
scrapeArray[6] = String(driver.findElement(webdriver.By.xpath('//tr[contains(td[1], "'+tempID+'")]/td[7]')).text());
console.log("6: "+scrapeArray[6]);
}).then(function(){
    numberOf++;
    driverLoop();
}).then(null, function(err){
    console.log("IDs Complete!");

});

1 个答案:

答案 0 :(得分:2)

我知道这是一个老问题,但我有同样的问题(除了使用webdriver.io),解决方案是[Object object]实际上是一个Promise对象(而不是我期待的String - 我正在查看错误版本的API)。 ...getText().then((text)=>{ console.log(text);});应该有用。