Replies: 1 comment 6 replies
-
|
This page uses a cross-origin iframe which means you have to set ...
browser = Browser(
config=BrowserConfig(
+ disable_security=True,
new_context_config=BrowserContextConfig(
+ disable_security=True,
),
),
)Make sure not to visit any untrusted sites when you disable security, as they could use your cookies or login info for malicious purposes. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to automate login to a website, and
browser-useis not detecting all of the elements on the page. It's only detecting some of the elements at the top.Has anyone else seen this behavior? Is there any way to force it to "see" all the elements on the page, particularly the text input elements to provide login credentials?
Why is it only detecting a couple of elements up at the top?
Beta Was this translation helpful? Give feedback.
All reactions