I am using internet explorer for automating a website process. The website functions only in internet explorer and I can't use any other browser.
Tech used : Python3, Selenium, InternetExplorer
The code works perfectly for chromedriver. However, for InternetExplorer after performing a click on the first page, nothing works and the next steps begin to crash.
I tried debugging for error by pressing F12 to open Developer Console. Surprisingly enough, everything begins to work perfectly well, with a few minor glitches.
Could someone explain me how this can be fixed. Are there some preferences I need to change in order for me to be able to access the functionality without Developer Console.
I was getting the following error :
NoSuchWindowException: Currently focused window has been closed
Alternately, I tried to perform click by javascript using document.findElementByID().click()
, works for certain cases not all.