jpjacobpadilla / Google-Colab-Selenium

The best way to use Selenium in Google Colab Notebooks!
https://pypi.org/project/google-colab-selenium/
MIT License
156 stars 18 forks source link

An error will occur #6

Closed Munehira-Hiroshi closed 4 months ago

Munehira-Hiroshi commented 4 months ago
!pip install google-colab-selenium
import google_colab_selenium as gs
driver = gs.Chrome() # <----Error
jpjacobpadilla commented 4 months ago

Thanks for bringing this to my attention.

It looks like Selenium 4.20.0 was released today, which is causing the issue (since it still works on 4.19.0).

I'll see If I can find a fix.

jpjacobpadilla commented 4 months ago

Google-Colab-Selenium version 1.0.13 is out now, which adapts to the changes made in the new Selenium version.

Munehira-Hiroshi commented 4 months ago

Thank you!