.navigateTo() 建议编辑
自:2.0.0导航到新的 URL。此方法还将在页面加载后立即调用onBrowserNavigate()
测试全局变量。
用法
.navigateTo(url, [callback])
示例
describe('Navigation commands demo', function() {
test('demoTest', function(browser) {
// navigate to new url:
browser.navigateTo('https://nightwatch.node.org.cn');
// Retrieve to url with callback:
browser.getCurrentUrl(function(result) {
console.log(result.value);
});
});
test('demoTestAsync', async function(browser) {
const currentUrl = await browser.navigateTo('https://nightwatch.node.org.cn').getCurrentUrl();
console.log('currentUrl:', currentUrl); // will print 'https://nightwatch.node.org.cn'
});
});
参数
名称 | 类型 | 描述 |
---|---|---|
网址 |
字符串 | 要导航到的 URL |
回调 可选 |
函数 |