Skip to content

Commit

Permalink
Try fix selenium test.
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhuramachandran committed Mar 15, 2017
1 parent 27f2f28 commit 1c00e83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vixen/integration_tests/test_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def test_edit_view_project(self):

# When
# Create a new project.
browser.find_element_by_id('new-project').click()
e = wait.until(EC.presence_of_element_located((By.ID, 'new-project')))
e.click()
# Set the name.
e = wait.until(EC.presence_of_element_located((By.ID, 'edit-name')))
e.clear()
Expand Down

0 comments on commit 1c00e83

Please sign in to comment.