-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
-
Hi, i'm trying to click an element inside a pop up that hides at moment the user scrolls down, i'm using the parameter "scroll=False" to avoid that behavior, but the driver keeps scrolling down and hiding the pop up, can you help me?
code line:
self.click('td[id="638974656000000000_33"]', scroll=False)
Beta Was this translation helpful? Give feedback.
All reactions
You could try self.find_element(selector).click()
, which forces the regular Selenium click.
Or a JS click: self.js_click(selector, scroll=False)
.
Replies: 1 comment 1 reply
-
You could try self.find_element(selector).click()
, which forces the regular Selenium click.
Or a JS click: self.js_click(selector, scroll=False)
.
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks a lot
Beta Was this translation helpful? Give feedback.