房间总数根据添加的客人数量显示。我的问题是如何验证房间总价值是否有所改变。如果是,如何在控制台中打印。
答案 0 :(得分:0)
试试这个:
browser.wait(function() {
i++;
return $('.popup-loading p').getText().then(function(content) {
if (content != "the init value") {
console.log("Value changed");
return true;
} else {
_retryOnErr();
}
}, _retryOnErr);
}, 3600 * 1000, 'Error waiting for element present: ').
then(function(waitRetValue) {
return waitRetValue;
}, function(err) {
throw err + ' after ' + i + ' iterations.';
});