获取当前页面的 URL。

用法

                    .getCurrentUrl([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'
  });

});

参数

名称 类型 描述
回调
可选
函数

W3C WebDriver 规范