我在 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();
}
}