We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0831c5 commit 2f7c60bCopy full SHA for 2f7c60b
tests/selenium/base.py
@@ -167,6 +167,7 @@ def wait_for_settings_to_expand(self):
167
168
def click_when_clickable(self, el):
169
print(" - waiting for element to be clickable")
170
+ self.driver.execute_script("arguments[0].scrollIntoView()", el)
171
WebDriverWait(self.driver, 10).until(
172
exp_cond.element_to_be_clickable(el)
173
).click()
tests/selenium/login.py
@@ -47,6 +47,7 @@ def good_login(self):
47
def good_logout(self):
48
self.logout()
49
self.wait()
50
+ self.wait_on_class('sys_messages')
51
assert self.by_class('sys_messages').text == 'Session destroyed on logout'
52
53
0 commit comments