Nightwatch 将页面的当前 url 分配给变量

Nightwatch assign current url of the page to varriable

我正在尝试将 firstPageUrl 变量分配给当前 url。请帮助我,谢谢。试着把它变成这样:

     var firstPageUrl = "";
     browser.url(function(result) {
      // return the current url
      firstPageUrl = result.value;
      return firstPageUrl;
     });
var firstPageUrl = "";
browser.url(function(result) {
  // return the current url
  firstPageUrl = result.value;
  module.exports.firstPageUrl;
});

找到如何通过 node.js module.exports 命令解决我的问题。