internet-explorer

Trying to login to a website using selenium python

Trying to login to a website using selenium python Question: I am trying to login to a website using selenium python, the browser is Internet Explorer and yes the website only works properly in internet explorer. I have written the below code to enter the username: uname = driver.find_element(By.ID, "UserName").send_keys("RParihar") When I run the code …

Total answers: 2

Webscraping websites with old unsupported Internet Explorer browser

Webscraping websites with old unsupported Internet Explorer browser Question: I am trying to scrape the following website(https://iltacon2022.expofp.com/) and I keep receiving the following error (full output print below). I’m not sure what the issue is and I was wondering if someone could help me. if (window.navigator.userAgent.indexOf("Trident/") !== -1) { alert("Your are using old unsupported Internet …

Total answers: 2

Selenium test with Python in Internet Explorer

Selenium test with Python in Internet Explorer Question: I have written a script that opens a web browser using python and Selenium. It works fine with Firefox using the following code: from selenium import webdriver driver = webdriver.Firefox() When I replace Firefox with IE (the suggested value when I start typing), I get the message …

Total answers: 4