selenium – PHPUnit和WebDriver – 如何获取当前的URL?

前端之家收集整理的这篇文章主要介绍了selenium – PHPUnit和WebDriver – 如何获取当前的URL?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
场景:
我打开www.google.com,输入一些关键字并点击搜索按钮.
现在我进入结果页面.我想获取此结果页面的当前URL,包括查询参数.

我在这里找到了方法getBrowserUrl()phpunit-selenium on github.第410行

但是这个方法返回了我在setUp函数中设置的值.

public function setUp(){
$this->setBrowser(testConfig::$browserName);
$this->setBrowserUrl('http://www.google.com/');
}

public function testGoogleSearch(){
$this->url('');
//input some keywords
.......
//click search button
.......
//want to get the url of result page
$resultUrl= $this->getBrowserUrl();
echo $resultUrl;
}

我有一个字符串’http://www.google.com/‘而不是结果页面的整个网址.
请帮帮我,谢谢!

@H_301_12@
@H_301_12@
答案是:
$currentURL = $this->url();

我也问过这个问题here

感谢@jaruzafa

@H_301_12@ 原文链接:https://www.f2er.com/php/134680.html

猜你在找的PHP相关文章