selenium-iedriver

Selenium python program freezes at get() function

Selenium python program freezes at get() function Question: A simple python program freezes on the get() function of the selenium driver and does not return. Please find below the written code: self.browser = webdriver.Ie("IEDriver\IEDriverServer.exe") self.browser.get(<url_in_quotes>) print(‘here’) ##does not print self.browser.find_element_by_id(‘txtUname’).send_keys(self.username) self.browser.find_element_by_id(‘txtPword’).send_keys(self.password) self.browser.find_element_by_id(‘Submit’).click() I am using python 3.11 and IEDriver. I have tried using implicit and …

Total answers: 1