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):
1515 def tearDown (self ) -> None :
1616 self .driver .quit ()
1717
18- def wait (self , timeout = 5 ):
18+ def wait (self , timeout = 10 ):
1919 return WebDriverWait (self .driver , timeout )
2020
21- def wait_until (self , condition , timeout = 5 ):
21+ def wait_until (self , condition , timeout = 10 ):
2222 return self .wait (timeout ).until (lambda driver : condition ())
2323
2424 def test_hello_world (self ):
@@ -37,7 +37,7 @@ def test_parametrized_component(self):
3737 self .assertEqual (element .get_attribute ("data-value" ), "579" )
3838
3939 def test_component_from_web_module (self ):
40- self .wait (10 ).until (
40+ self .wait (20 ).until (
4141 expected_conditions .visibility_of_element_located (
4242 (By .CLASS_NAME , "VictoryContainer" )
4343 )
You can’t perform that action at this time.
0 commit comments