Merge branch 'master' into dependabot/pip/sentry-sdk-0.16.1

This commit is contained in:
Jens L 2020-07-13 16:15:58 +02:00 committed by GitHub
commit 72ec871729
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@ class SeleniumTestCase(StaticLiveServerTestCase):
makedirs("selenium_screenshots/", exist_ok=True)
self.driver = self._get_driver()
self.driver.maximize_window()
self.driver.implicitly_wait(300)
self.wait = WebDriverWait(self.driver, 500)
self.driver.implicitly_wait(30)
self.wait = WebDriverWait(self.driver, 50)
self.apply_default_data()
self.logger = get_logger()