.elementByXPath("...").text('text', function(err, text){ console.log("text = "+text); }).
js 的代码是这样写的么?
如果直接 var t = driver..elementByXPath("...").text(); t 是一个 [object promise],不是一个字符串
应该这么写 .elementByXPath("...", function(err, el){ el.text(function(err, text) { console.log(text); }); })