Skip to content

Commit 83ea36f

Browse files
committed
selenium.pageLoadTimeout now has a default value of 0, fixes #882
1 parent 22e58e8 commit 83ea36f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/digitalpebble/stormcrawler/protocol/selenium/RemoteDriverProtocol.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public void configure(Config conf) {
8686
int implicitWait = ConfUtils.getInt(conf,
8787
"selenium.implicitlyWait", 0);
8888
int pageLoadTimeout = ConfUtils.getInt(conf,
89-
"selenium.pageLoadTimeout", -1);
89+
"selenium.pageLoadTimeout", 0);
9090
int setScriptTimeout = ConfUtils.getInt(conf,
9191
"selenium.setScriptTimeout", 0);
9292
touts.implicitlyWait(implicitWait, TimeUnit.MILLISECONDS);

0 commit comments

Comments
 (0)