B
B
bfesiuk2020-11-02 01:56:10
Python
bfesiuk, 2020-11-02 01:56:10

Why does the site identify Selenium Webdriver as a bot?

Hello,

I am making a script to fill and submit a form on the same site using Selenium.
And sometimes there are such redirects:

5f9f3cf2ce57f165302906.png

If I understand correctly, the site recognizes the webdriver as a bot.
Please tell me if it is possible to somehow bypass or reduce the number of occurrences of these redirects.

Thanks in advance for your attention! love and health)

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
vyr0d0k, 2020-11-02
@vyr0d0k

In theory, it should help (an example with Firefox, it will probably be identical with chrome):

option = webdriver.FirefoxOptions()

option.set_preference('dom.webdriver.enabled', False)

driver = webdriver.Firefox(options=option)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question