空手道 UI:获取当前浏览器的 URL
Karate UI: Get current browser's URL
有没有办法获取浏览器地址栏中的当前URL?
是否有任何无法替代以下不起作用的代码,也许如前所述 here:
And def url = function() {return window.location.href}
Then print url()
是的 driver.url
就是您要查找的内容:https://github.com/intuit/karate/tree/master/karate-core#driverurl
* match driver.url == 'https://some/url'
请注意,为避免不稳定的测试,这可能更好:
* waitForUrl('https://some/url')
有没有办法获取浏览器地址栏中的当前URL? 是否有任何无法替代以下不起作用的代码,也许如前所述 here:
And def url = function() {return window.location.href}
Then print url()
是的 driver.url
就是您要查找的内容:https://github.com/intuit/karate/tree/master/karate-core#driverurl
* match driver.url == 'https://some/url'
请注意,为避免不稳定的测试,这可能更好:
* waitForUrl('https://some/url')