Hi i want to use selenium to open Internet Explorer-11 as different user. I have done a search and it show that it is possible but with Java, I am using Python so I am wondering is it possible with Internet Explorer webdriver or not.
For example if you right click on internet explorer, it will have the part sign in as different user. I want to automate that part with python IE webdriver, but I do not know how to do it.
what I am asking is similar to this post How to impersonate a specific user with Selenium Webdriver? but I want to do it in Python with selenium webdriver
To be clear. I know how to open the webrowser with selenium and i know how to sign in with selenium (when there is a pop up window). But I am asking about how to let selenium know that I want to sign in as different user. Because if I just open my browswer normally there is no pop up for sign in.
from selenium import webdriver
driver=webdriver.Ie()
Thank you