Skip to content

Commit

Permalink
tweak webdriver wait in volvox REST names selenium test
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Feb 16, 2018
1 parent 7503ed3 commit 06fe3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/selenium_tests/volvox_REST_names_test.py
Expand Up @@ -62,7 +62,7 @@ def _do_typed_query_and_wait( self, text, num_of_results ):
qbox = self.browser.find_element_by_id("location")
qbox.clear()
qbox.send_keys( text )
WebDriverWait(self, 5*JBrowseTest.time_dilation).until(lambda self: self.is_right_num_of_entries (num_of_results))
WebDriverWait(self, 5*self.time_dilation).until(lambda self: self.is_right_num_of_entries (num_of_results))

# Compares number of returned results against expected results
def is_right_num_of_entries( self, num ):
Expand Down

0 comments on commit 06fe3d7

Please sign in to comment.