Issue
I need to access a browser that is already open. I'm using Python, but if you have another language, I welcome help! I'm trying to access a website and when I break its captcha even manually (the browser is starting with Selenium) it simply reports that it's wrong even though it's right and I can't access the certificate. In anonymous mode it shows the certificate but when clicking it goes wrong anyway.
I tried to access in anonymous mode, as another user, doing different ways so the site wouldn't recognize the robot.
Pt-[BR] Preciso acessar um navegador que já está aberto. Estou usando Python, mas se tiver outra linguagem, eu aceito ajuda! Estou tentando acessar um site e quando eu quebro seu captcha ate mesmo manual(o navegador sendo startando pelo Selenium) ele simplesmente informa que está errado mesmo estando certo e eu não consigo acessar o certificado. Pelo modo anônimo ele mostra o certificado mas ao clicar da errado do mesmo jeito.
Tentei acessar em modo anônimo, como outro usuário, fazer de diferentes maneira para o site não reconhecer o robô.
Solution
you can run chrome with command:
chrome.exe --remote-debugging-port=9222 --user-data-dir="D:/ChromeProfile"
the user-data-dir is a new dir for user data.
and in selenium, you should create driver like this:
from selenium.webdriver.chrome.options import Options
from selenium import webdriver
chrome_options = Options()
chrome_options.add_experimental_option("debuggerAddress", "127.0.0.1:9222")
driver = webdriver.Chrome(options=chrome_options)
remember use the same port.
Answered By - IronSpiderMan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.