他们是否有可能使用嵌入式凭据运行PHPUnit Selenium测试?由于chromedriver 59他们无法在网址中使用嵌入式凭据开始测试,如下所示:
https://user:password@test.testweb.de
我的解决方案: 1.包括auth basic +链接到服务器上已存在的文件 2.跳回没有auth basic
的URL
'init_url'=>'https://user:password@test.testweb.de/robots.txt'
'base_url'=>'https://test.testweb.de'
$this->webDriver->get($config['platform']['testweb']['init_url']);
$this->webDriver->get($config['platform']['testweb']['base_url']);