Skip to content

Commit

Permalink
Try increasing wait time.
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhuramachandran committed Mar 16, 2017
1 parent b7acbbb commit 5c54b9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vixen/html/vixen_ui.html
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ <h3 style="margin: 5px;"> View Project: {{viewer.name}}</h3>
});

jigna.models.ui.log('Browser information: ' +
navigator.appVersion, 'info');
navigator.userAgent, 'info');

// The Vue instance.
var data = Object.assign({}, jigna.models);
Expand Down
5 changes: 3 additions & 2 deletions vixen/integration_tests/test_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ def setUpClass(cls):
elif driver == 'chrome':
browser = webdriver.Chrome()

browser.implicitly_wait(10)
browser.implicitly_wait(20)
browser.get('http://localhost:%d' % port)
time.sleep(2)
cls.driver = driver
cls.browser = browser
cls.ui = ui
Expand All @@ -65,7 +66,7 @@ def test_edit_view_project(self):
browser = cls.browser
ui = cls.ui
data_path = os.path.join(root, 'test')
self.wait = WebDriverWait(browser, 10)
self.wait = WebDriverWait(browser, 20)

# When
# Create a new project.
Expand Down

0 comments on commit 5c54b9b

Please sign in to comment.