1

我在 Firefox 中使用 Foxyproxy,每当我想切换到我的沙盒环境时,我都会使用 .pac 文件。生活很好。

但是,当我尝试使用基于浏览器的测试实用程序(如 Selenium)进行自动化时,我无法让它通过我的 Sandbox .pac 代理。如何实现呢?我正在使用 JUnit。这是我的示例代码。

import org.openqa.selenium.server.RemoteControlConfiguration;
import org.openqa.selenium.server.SeleniumServer;
import com.thoughtworks.selenium.*;

public class TestCase1 extends SeleneseTestCase {

 Selenium selenium;
 public static final String MAX_WAIT_TIME_IN_MS = "60000";
 private SeleniumServer seleniumServer;

 public void setUp() throws Exception {

  RemoteControlConfiguration rc = new RemoteControlConfiguration();
  rc.setSingleWindow(true);
  seleniumServer = new SeleniumServer(rc);
  selenium = new DefaultSelenium("localhost", 4444, "*firefox",
    "https://mywebsite.com/");
  seleniumServer.start();
  selenium.start();
 }

 public void testLogin() {
  selenium.open("/");
  selenium.type("id=user_name", "test");
  selenium.type("id=password", "test");
  selenium.click("css=input.btn");
  selenium.waitForPageToLoad("30000");
  assertTrue(selenium.isTextPresent("Signed in successfully"));
 }

 public void tearDown() throws InterruptedException {
  selenium.stop();
  seleniumServer.stop();
 }
}
4

1 回答 1

0

这个问题背后的主要目标是在 Windows 环境中的 Firefox 中运行 Selenium 测试。我有一个解决方法。我打开了 Internet Explorer 并转到 Internet 选项并转到连接并在那里设置自动 .pac 配置。答对了!有效。

于 2011-09-07T12:11:31.367 回答