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 6fb37d3 commit 3610c86Copy full SHA for 3610c86
tests/selenium/send.py
@@ -4,6 +4,7 @@
4
from runner import test_runner
5
from selenium.common.exceptions import TimeoutException
6
from selenium.common.exceptions import NoSuchElementException
7
+import time
8
9
class SendTest(WebTest):
10
@@ -32,6 +33,7 @@ def compose_message(self):
32
33
if send_button.get_attribute('disabled'):
34
self.driver.execute_script("arguments[0].removeAttribute('disabled')", send_button)
35
self.driver.execute_script("arguments[0].scrollIntoView()", send_button)
36
+ time.sleep(1)
37
send_button.click()
38
self.wait_with_folder_list()
39
self.wait_on_class('sys_messages')
0 commit comments