wkeeling / selenium-wire

Extends Selenium's Python bindings to give you the ability to inspect requests made by the browser.
MIT License
1.9k stars 254 forks source link

Not able to login to google #461

Open sunny9495-dev opened 2 years ago

sunny9495-dev commented 2 years ago

Iam unable to login to gmail using selenium wire, its just hangup after entering email

https://i.imgur.com/Er3WQ46.png

I installed the selenium wire certificate, but still showing not secure

Avnsx commented 2 years ago

Iam unable to login to gmail using selenium wire, its just hangup after entering email

https://i.imgur.com/Er3WQ46.png

I installed the selenium wire certificate, but still showing not secure

Use undetected-chromedriver v2 standalone or mixed with selenium-wire, if you forcefully need selenium-wires functionality. Generally speaking out of experience, automating google login / register is a pain in the ass. If you don't want to automate the login itsself, I would just recommend using cookies from already registered google accounts, to authenticate with them instead and bypass the entire registration / login process, even if you didn't have the certificate error, in the next step it would prompt you saying your browser seems to be insecure and that your login / registration is blocked until, you use another browser. Also it's important to note that you will need phone verification, for pretty much any registered account, spending time on automating google is not worth it

sunny9495-dev commented 2 years ago

Iam unable to login to gmail using selenium wire, its just hangup after entering email https://i.imgur.com/Er3WQ46.png I installed the selenium wire certificate, but still showing not secure

Use undetected-chromedriver v2 standalone or mixed with selenium-wire, if you forcefully need selenium-wires functionality. Generally speaking out of experience, automating google login / register is a pain in the ass. If you don't want to automate the login itsself, I would just recommend using cookies from already registered google accounts, to authenticate with them instead and bypass the entire registration / login process, even if you didn't have the certificate error, in the next step it would prompt you saying your browser seems to be insecure and that your login / registration is blocked until, you use another browser. Also it's important to note that you will need phone verification, for pretty much any registered account, spending time on automating google is not worth it

Ok Thanks Avnsx