我正在使用Selenium webDriver for Chrome。
我如何获得推介网址?
表示前一个网址。当前的那个
我想将它与当前网址进行比较。
答案 0 :(得分:0)
您应该将其存储在变量中并将其与当前值进行比较。 我将使用getCurrentURL进行各种实现的存根方法。 希望这有帮助
答案 1 :(得分:0)
代码示例:
String previousUrl = driver.Url;
//Code to navigate to the next page whether that is a navigate or button click
if (previousUrl == driver.Url)
{
//match code goes here
}
else
{
//failed match code goes here
}
请注意,根据您的软件包,如果您想知道是否导航到完全不同的网站或同一网站,而是另一个页面,则可以非常轻松地确定主机名。
如果您希望比较网址的非常具体的部分,那么您可能希望使用正则表达式比较来识别特定部分。