-
Hey all So I have the html below which is a simplification of my actual scenario. My goal is to iterate the This is what I’m doing:
I couldn't find a Should I be taking a different approach? Thanks! I'm on Chrome 137 and selenium-base 4.39.3
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I would check out #3528 (comment). For some cases where you need to retain stealth, there are workarounds, specifically for interacting with elements inside nested iframes. |
Beta Was this translation helpful? Give feedback.
I would check out #3528 (comment).
If
element.query_selector(selector)
isn't working andsb.get_nested_element(parent_selector, selector)
isn't working, then you may have to callsb.reconnect()
in order to use the regular Seleniumiframe
methods such asswitch_to_frame(frame)
.For some cases where you need to retain stealth, there are workarounds, specifically for interacting with elements inside nested iframes.
PyAutoGUI
can be used for that. Example: #3533 (comment).