获取浏览器的当前URL

时间:2014-04-16 20:52:22

标签: node.js selenium selenium-webdriver webdriver

在Selenium Nodejs中,如何获取我正在测试的页面的当前URL(我的测试脚本运行的那一刻假设页面最初被重定向)

2 个答案:

答案 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);