remove timeout options

This commit is contained in:
Matthew Griffith 2020-03-12 19:42:14 -04:00
parent d2f7a3eabb
commit e4e9786dd8

View File

@ -150,9 +150,6 @@ async function prepare_local_driver(env) {
.setFirefoxOptions(firefoxOptions)
.build();
// Allow waits up to 5 minutes
await driver.manage().timeouts().implicitlyWait(300, TimeUnit.SECONDS);
return driver;
}