繁体   English   中英

如何将代理设置为 selenium 远程 Web 驱动程序?

[英]How can I set proxy to selenium remote web driver?

我正在尝试在公司代理后面执行 aws 设备场示例。 起初我在连接 aws 时遇到了代理问题。 我设法通过设置 aws 代理配置来解决这个问题。 我关于这个问题的另一个问题

现在我面临另一个代理问题。 创建 remotewebdriver 时发生未知主机名错误。 这是我的源代码。

@Before
public void setUp() {
    try {
        ProxyConfiguration.Builder proxyConfig = ProxyConfiguration.builder();
        proxyConfig.endpoint(new URI("<YOUR PROXY URL>"));
        proxyConfig.username("<YOUR USER ID>");
        proxyConfig.password("YOUR PASSWORD");
        ApacheHttpClient.Builder httpClientBuilder =
                ApacheHttpClient.builder()
                                .proxyConfiguration(proxyConfig.build());

        String myARN = "<YOUR ARN>";
        DeviceFarmClient client  = DeviceFarmClient.builder()
                .credentialsProvider(DefaultCredentialsProvider.create())
                .region(Region.US_WEST_2)
                .httpClientBuilder(httpClientBuilder)
                .overrideConfiguration(ClientOverrideConfiguration.builder().build())
                .build();
        CreateTestGridUrlRequest request = CreateTestGridUrlRequest.builder()
                .expiresInSeconds(300)        // 5 minutes
                .projectArn(myARN)
                .build();
        URL testGridUrl = null;
        CreateTestGridUrlResponse response = client.createTestGridUrl(request);
        testGridUrl = new URL(response.url());
        driver = new RemoteWebDriver(testGridUrl, DesiredCapabilities.chrome()); //error occurred at this line.
    } catch (Exception e) {
        e.printStackTrace();
    }
}

这是错误日志。

UnknownHostException: testgrid-devicefarm.us-west-2.amazonaws.com

我尝试了一些措施来解决这个问题,但这些措施都没有奏效。 下面是我的一些尝试。

  1. 使用 browsermob 库
DesiredCapabilities cap = DesiredCapabilities.chrome();
BrowserMobProxy bmp = new BrowserMobProxyServer();
bmp.setChainedProxy(
        new InetSocketAddress("<PROXY HOST>", Integer.valueOf("<PROXY PORT>")));
bmp.chainedProxyAuthorization("<USER>", "<PASSWORD>", AuthType.BASIC);
bmp.setTrustAllServers(true);
bmp.start();
Proxy proxy = ClientUtil.createSeleniumProxy(bmp);
cap.setCapability(CapabilityType.PROXY, proxy);
driver = new RemoteWebDriver(testGridUrl, cap);
  1. 使用 browserup 而不是 browsermob

它也不能很好地工作,并且发生了相同的错误 (UnknownHostException)。

  1. 使用 Authenticator.setDefault

它也没有很好地工作。

Authenticator.setDefault(new Authenticator() {
    public PasswordAuthentication getPasswordAuthentication() {
        return new PasswordAuthentication(proxyUserName, proxyPassword.toCharArray());
    }
} );
System.setProperty("http.proxyUser", proxyUserName);
System.setProperty("http.proxyPassword", proxyPassword);

错误信息是..

java.io.IOException: Failed to authenticate with proxy

我该如何解决这个问题?

谢谢。

在您的计算机中运行的 Selenium 客户端需要使用公司代理连接到 AWS Device Farm。

需要设置 webdriver 连接的代理。

Javascript 中的示例如下。

const driver = await new Builder()
  .usingWebDriverProxy(process.env.HTTPS_PROXY || '')
  .usingServer(urlString)
  .withCapabilities(...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM