我在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();
}
}
答案 0 :(得分:0)
这个问题背后的主要目标是在Windows环境中运行Firefox中的Selenium测试。我有一个解决这个问题的方法。我打开了Internet Explore并转到Internet选项并转到连接并在那里设置自动.pac配置。答对了!它奏效了。