在Selenium Nodejs中,如何获取我正在测试的页面的当前URL(我的测试脚本运行的那一刻假设页面最初被重定向)
答案 0 :(得分:13)
driver.get("http://www.google.com")
.then(function() {
return driver.getCurrentUrl();
})
.then(function(currentUrl) {
// work with the current url of browser
});
答案 1 :(得分:-1)
要显示您必须使用toString:
var currentURL = driver.getCurrentUrl().toString();
console.log("***>>> getCurrentUrl: "+currentURL);