We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad99756 commit 5e60ae4Copy full SHA for 5e60ae4
test/selenium/test_options.py
@@ -1,3 +1,4 @@
1
+from time import sleep
2
from util import ExtensionTestCase
3
4
class OptionsTest(ExtensionTestCase):
@@ -11,17 +12,19 @@ def test_options(self):
11
12
def test_show_counter(self):
13
selector = '#showCounter'
14
self.load_options()
15
+ sleep(1)
16
+
17
el = self.query_selector(selector)
18
self.assertTrue(el.is_selected())
19
el.click()
20
21
self.driver.refresh()
-
- self.load_options()
22
23
24
self.assertFalse(el.is_selected())
25
26
27
28
29
30
0 commit comments