|
Lets say i ran this code: try:
driver = Driver(browser='chrome', uc=True, user_data_dir='path', headless=False, headed=True)
driver.get('https://www.google.com')
x = input("Press ENTER")
finally:
driver.quit()and found the elements i needed one by one for a test using the browser and never entering an input. Would i then be undetectable running a follow-up test with the same user-data-dir? |
Answered by
mdmintz
May 17, 2024
Replies: 1 comment
|
Unless you are in a UC Mode special breakpoint, you can be detected even when you are entering manual actions. As for whether or not you could be detected after performing certain actions and reusing the |
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unless you are in a UC Mode special breakpoint, you can be detected even when you are entering manual actions.
(See https://www.youtube.com/watch?v=2pTpBtaE7SQ&t=1196s)
As for whether or not you could be detected after performing certain actions and reusing the
user_data_dir, you should experiment on the website you're using, and find out for yourself. It depends on multiple factors.