When I use Selenium for the first time in a long time, something doesn't work ... Is there something like this? Looking at the error command
SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 76
I got this error. This happens when the versions of Chrome and Chrome driver are different. Then what should I do? The answer is simple. All you have to do is match the version.
First open Chrome. Then press the menu with three vertical dots next to the top icon. Go to "Help" in it and press "About Google Chrome". Then you can check the version of Chrome after that. Remember the version there.
Then install the appropriate Chrome driver for your version.
pip install chromedriver-binary == 76.0.3809.132 <-"Enter the version of Chrome you checked earlier"
You can install it by running the above in a terminal. Since the place where 76.0.3809.132 is written is the version, please replace it with the version of Chrome confirmed earlier and execute it.
I think you often get an error here. If you read the error, you may find that various versions are listed. It doesn't have the version of Chromedriver you just entered, but it does have the version you're viewing! So please select one version from the Chrome version and rewrite the above version part again.