1

我在使用 Chrome 时遇到问题 - 它经常引发以下异常

org.openqa.selenium.remote.UnreachableBrowserException.

所以我想抓住所有这些,而不是导致构建失败。

4

2 回答 2

0

我认为这是一个已知问题 -

http://code.google.com/p/selenium/issues/detail?id=3000

http://code.google.com/p/selenium/issues/detail?id=4319

于 2012-08-31T12:38:59.013 回答
0

如果发生失败状态代码,您需要告诉客户端抛出异常......

public class MyHtmlUnitDriver extends HtmlUnitDriver {public class MyHtmlUnitDriver extends HtmlUnitDriver {
    public MyHtmlUnitDriver(){
super();
this.getWebClient().getOptions().setThrowExceptionOnFailingStatusCode(true);
}
于 2013-02-26T14:39:42.747 回答