I have deleted 115 and changed it to 114. Here is the shell code that works for me on colab:
!apt-get remove google-chrome-stable
!apt-get remove chromium-driver
# Download and install Google Chrome
!wget
https://dl.google
.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114
.0.5735.90-
1_amd64
.deb
!dpkg -i google-chrome-stable_114.0.5735.90-1_amd64.deb
# Download and install ChromeDriver
!unzip chromedriver_linux64.zip
!sudo mv chromedriver /usr/bin/chromedriver
!sudo chown root:root /usr/bin/chromedriver
!sudo chmod +x /usr/bin/chromedriver