File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
py/test/selenium/webdriver/common Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -98,14 +98,14 @@ def test_get_client_windows(driver):
98
98
99
99
window_info = client_windows [0 ]
100
100
assert isinstance (window_info , ClientWindowInfo )
101
- assert window_info .get_client_window () is not None
102
- assert window_info .get_state () is not None
103
- assert isinstance (window_info .get_state () , str )
104
- assert window_info .get_width () > 0
105
- assert window_info .get_height () > 0
101
+ assert window_info .client_window is not None
102
+ assert window_info .state is not None
103
+ assert isinstance (window_info .state , str )
104
+ assert window_info .width > 0
105
+ assert window_info .height > 0
106
106
assert isinstance (window_info .is_active (), bool )
107
- assert window_info .get_x () >= 0
108
- assert window_info .get_y () >= 0
107
+ assert window_info .x >= 0
108
+ assert window_info .y >= 0
109
109
110
110
111
111
def test_raises_exception_when_removing_default_user_context (driver ):
You can’t perform that action at this time.
0 commit comments