Home > Software engineering >  Why doesnt Selenium/Chrome Driver open websites with me auto logged in
Why doesnt Selenium/Chrome Driver open websites with me auto logged in

Time:11-18

You guys know how google keeps you signed into different websites? how come whenever I use Selenium/Chrome driver and have it go to a website I'm already signed into, it is like im a fresh user and I have to have Selenium go through the work of signing in, which in some cases I cant because some websites block me from signing in with selenium because they know I'm using a bot.

CodePudding user response:

Google keeps you signed into different websites through your Default profile.

Where as Selenium driven ChromeDriver initiated Browsing Context is opened everytime with a newly crated temporary profile.

  • Related