黄瓜测试重定向网址与另一个网址

时间:2018-01-08 16:15:31

标签: javascript selenium cucumber

我正在写黄瓜测试。

在我的代码中单击按钮时,按钮会重定向到另一个页面。该页面的网址将始终相同。如何从黄瓜测试中获取当前URL?我试过了

if (driver.getCurrentUrl() === http://localhost:8080/testURL){
      console.log("some output");
} 

但它不起作用。

感谢任何帮助

1 个答案:

答案 0 :(得分:0)

在浏览器中获取当前URL的方法是:

string currentUrl = driver.getCurrentUrl();

如果您希望在上一步中使用黄瓜定义URL,并且希望在将来的步骤中使用该URL,请在上一步中将URL添加到您的方案上下文中。