Forums

My python program worked for months, today errors out SELENIUM automation issues

My automation program using Selenium and webdriver / chromedriver was working great for months and now something or package got updated and gives me errors:

enter image description here

I have NO clue where to start and have basic python knoledge. My only idea is to use an old server I have laying around and revert to older version of python and selenium packages BUT that’s really not practical?

Thanks

This is a forum for people with issues on PythonAnywhere. We cannot help you to get chrome and chromedriver working on your Windows machine.

Your error message gives a NoSuchElementError message. Most likely what has happened is that, your program did automation by grabbing IDs of specific elements in html in a website. But now that website has changed the id of some of its elements. Leaving your selenium program confused. If you are the maker of this program, you have find the new IDs and adjust your program to the new IDs. If someone else that you know, is the maker of this program. You need to ask that person to fix the program.

@mini208 makes sense, thanks for stepping in.