-
|
When the screen is up I click and the dates expand but can't get it to work with SB... |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Mar 17, 2026
Replies: 1 comment 1 reply
-
|
Maybe you need to scroll it into view for that site. This worked for me: from seleniumbase import sb_cdp
sb = sb_cdp.Chrome("https://restructuring.ra.kroll.com/lycra/")
sb.sleep(2)
sb.scroll_into_view("#show-all-dates-link")
sb.sleep(1)
sb.click("#show-all-dates-link")
sb.sleep(1)
sb.scroll_into_view("#dates-container")
breakpoint() |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe you need to scroll it into view for that site. This worked for me: