场景:
我打开www.google.com,输入一些关键字并点击搜索按钮.
现在我进入结果页面.我想获取此结果页面的当前URL,包括查询参数.
我打开www.google.com,输入一些关键字并点击搜索按钮.
现在我进入结果页面.我想获取此结果页面的当前URL,包括查询参数.
我在这里找到了方法getBrowserUrl()phpunit-selenium on github.第410行
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/‘而不是结果页面的整个网址.
请帮帮我,谢谢!