We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742805e commit dd5b0c3Copy full SHA for dd5b0c3
seleniumbase/fixtures/base_case.py
@@ -11361,7 +11361,11 @@ def __click_with_offset(
11361
pass
11362
try:
11363
action_chains = ActionChains(self.driver)
11364
- action_chains.move_to_element_with_offset(element, x, y)
+ import warnings
11365
+
11366
+ with warnings.catch_warnings():
11367
+ warnings.simplefilter("ignore", category=DeprecationWarning)
11368
+ action_chains.move_to_element_with_offset(element, x, y)
11369
if not double:
11370
action_chains.click().perform()
11371
else:
0 commit comments