window.maximize()
window.present()
- wait(500)
+ wait(2000)
assert window.is_active(), "Observer not active"
assert window.get_width() == 1024, "Window not maximized"
ds_window.maximize()
ds_window.present()
- wait(500)
+ wait(2000)
assert ds_window.is_active(), "drag source not active"
assert ds_window.get_width() == 1024, "Window not maximized"
dt_window.maximize()
dt_window.present()
- wait(500)
+ wait(2000)
assert dt_window.is_active(), "drop target not active"
assert dt_window.get_width() == 1024, "Window not maximized"
wait(150)
pointer_move(120, 150)
- expect_drag(timeout=1000)
+ expect_drag(timeout=2000)
launch_drop_target()
wait(100);