我正在尝试从 Browserstack 切换到 Sauce Labs(前者在 docker 中产生了一个僵尸进程,它挂起整个容器)。虽然一切似乎都在连接和监听端口,但 HAR 是空的。
我的设置很简单:在运行测试的机器上,我从我的代码中同时启动 BMP 和 SC。然后我的测试会启动一个远程 WebDriver,它会打开一个网页(我在这里使用 Google 作为示例)。然后,这个互联网连接应该通过 BMP 代理,以便我可以捕获所有分析。
根据我使用 BrowserStack 的经验,它很有效。但是,在与 Sauce Labs 相同的设置中,我没有截获任何东西。
@BeforeClass
public void SetUp() {
SauceConnectFourManager = new SauceConnectFourManager(true);
browserMobProxyServer = new BrowserMobProxyServer();
browserMobProxyServer.setTrustAllServers(true);
browserMobProxyServer.start(9191);
browserMobProxyServer.enableHarCaptureTypes(CaptureType.REQUEST_CONTENT, CaptureType.RESPONSE_CONTENT);
try {
SauceConnectFourManager.openConnection(username, key,4445,
null, "-v --pac file://" + filePath,
null, false, null);
} catch (IOException e) {
e.printStackTrace();
}
DesiredCapabilities caps = DesiredCapabilities.chrome();
caps.setCapability("platform", "Windows 10");
caps.setCapability("version", "latest");
String url = "https://" + username + ":" + key + "@ondemand.saucelabs.com:443/wd/hub";
try {
driver = new RemoteWebDriver(new URL(url), caps);
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
@Test
public void TestShouldPass() {
/**
* Goes to Google's page just as an example
*/
driver.get("https://google.com");
System.out.println("title of page is: " + driver.getTitle());
}
@AfterClass
public void TearDown() {
driver.quit();
SauceConnectFourManager.closeTunnelsForPlan(username, null, null);
//har is null here!
Har har = browserMobProxyServer.getHar();
FileOutputStream fos;
try {
fos = new FileOutputStream("debug.har");
har.writeTo(fos);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
browserMobProxyServer.stop();
}