File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ def setUp(self):
15
15
def tearDown (self ) -> None :
16
16
self .driver .quit ()
17
17
18
- def wait (self , timeout = 5 ):
18
+ def wait (self , timeout = 10 ):
19
19
return WebDriverWait (self .driver , timeout )
20
20
21
- def wait_until (self , condition , timeout = 5 ):
21
+ def wait_until (self , condition , timeout = 10 ):
22
22
return self .wait (timeout ).until (lambda driver : condition ())
23
23
24
24
def test_hello_world (self ):
@@ -37,7 +37,7 @@ def test_parametrized_component(self):
37
37
self .assertEqual (element .get_attribute ("data-value" ), "579" )
38
38
39
39
def test_component_from_web_module (self ):
40
- self .wait (10 ).until (
40
+ self .wait (20 ).until (
41
41
expected_conditions .visibility_of_element_located (
42
42
(By .CLASS_NAME , "VictoryContainer" )
43
43
)
You can’t perform that action at this time.
0 commit comments