-
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? |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Sep 17, 2025
Replies: 1 comment
-
You could try |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could try
self.find_element(selector).click()
, which forces the regular Selenium click.Or a JS click:
self.js_click(selector, scroll=False)
.