Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
The best way to use Selenium in Google Colab Notebooks!
| Date | Stars |
|---|---|
| 2026-07-24 | 283 |
| 2026-07-25 | 282 |
| 2026-07-28 | 282 |
| 2026-07-30 | 282 |
| 2026-08-06 | 282 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
<p align="center">
<img src="https://github.com/jpjacobpadilla/Google-Colab-Selenium/blob/ecce30fd1f5f151e0c1d946259cf19de33aa8e9d/logo.png?raw=true">
</p>
<h3 align="left">The best way to use Selenium in Google Colab Notebooks!</h3>
- Simple setup of Selenium and ChromeDriver.
- Seamless integration with Google Colab.
- Supports Undetected ChromeDriver for more advanced use cases.
<br>
[](https://colab.research.google.com/drive/1MX3xY23Go1STe7LbDMvwf2KaqHpbrVhC?usp=sharing)
## Installation
Basic usage:
```bash
%pip install google-colab-selenium
```
Use [undetected-chromedriver](https://github.com/ultrafunkamsterdam/undetected-chromedriver) version:
```bash
%pip install google-colab-selenium[undetected]
```
## Basic Usage
```python
import google_colab_selenium as gs
driver = gs.Chrome()
# Your code to interact with the driver here
# ...
driver.quit()
```
## Undetected ChromeDriver
```python
import google_colab_selenium as gs
driver = gs.UndetectedChrome()
# Your code to interact with the driver here
# ...
driver.quit()
```
## Default Options
The `google-colab-selenium` package is preconfigured with a set of default options optimized for Google Colab environments. These defaults include:
- `--headless`: Runs Chrome in headless mode (without a GUI).
- `--no-sandbox`: Disables the Chrome sandboxing feature, necessary in the Colab environment.
- `--disable-dev-shm-usage`: Prevents issues with limited shared memory in Docker containers.
- `--lang=en`: Sets the language to English.
You are welcome to extend or override these options based on your needs:
```python
from selenium.webdriver.chrome.options import Options
import google_colab_selenium as gs
custom_options = Options()
# Add your custom options here
driver = gs.Chrome(options=custom_options)
```
## Contributing
Contributions are welcome! If you have a suggestion or an issue, please use the issue tracker to let me know.
<br>
<br>
<div align="center">
<h3>Test it out for yourself!</h3>
[](https://colab.research.google.com/drive/1MX3xY23Go1STe7LbDMvwf2KaqHpbrVhC?usp=sharing)
</div>
Excerpt of 2,244 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:01c3a1aaf45da8d0, topic:selenium