Nightwatch将页面的当前URL分配给varriable

时间:2017-08-03 11:24:57

标签: nightwatch.js

我正在尝试分配给firstPageUrl变量当前url。请帮帮我,谢谢。试着这样做:

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

1 个答案:

答案 0 :(得分:0)

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

通过node.js module.exports命令找到解决问题的方法。