我试图在一些远程自动化服务(Sauce Labs,Browserstack等)上运行Selenium测试,并遇到通过我的公司防火墙攻击其API的问题。
请注意,我要测试的应用程序 不在 此防火墙后面,可以公开访问。
DesiredCapabilities caps = DesiredCapabilities.internetExplorer(); caps.setCapability("platform", "Windows 7"); caps.setCapability("version", "9.0"); caps.setCapability("idleTimeout", "300"); caps.setCapability("name", "Invitation Tests"); driver = new RemoteWebDriver(new URL("https://user:key@saucelabs.com), caps);
问题似乎是Selenium的管道将url中的user:key解释为代理凭据,因此它永远不会离开我们的网络。是否有任何特定的技巧来配置它?似乎在后台使用了Apache HttpClient。
我 认为 我们正在使用NTLM代理,它似乎使用了基本身份验证。可能是来自这里的相同问题:https : //code.google.com/p/selenium/issues/detail?id=7286
您链接到的Google代码问题确实确实是原因。请注意,此问题已解决,因此您现在可以在创建RemoteWebDriver时注入自己的CommandExecutor实现。
具体来说,您可能会执行以下操作:
org.openqa.selenium.remote.http.HttpClient.Factory
HttpClient
HttpClientFactory
org.apache.http.impl.client.BasicCredentialsProvider
org.apache.http.auth.AuthScope
org.apache.http.impl.HttpClientBuilder
HttpCommandExecutor
RemoteWebDriver