Skip to content

Get Started in 3 Easy Steps 🚀#

Ready to try? Let's get started:

1. Install Browserist Package#

Assuming that Python is already installed, execute this command in the terminal to install the Browserist package:

pip install browserist

2. Install Browser Driver#

Assuming that Chrome is already installed, you also need a driver that automates the Chrome browser:

pip install chromedriver

3. First Script#

You're now ready to go:

Python
1
2
3
4
5
from browserist import Browser

with Browser() as browser:
    browser.open.url("https://example.com")
    browser.wait.seconds(5)

Next Steps#

Find more tips for installation of Browserist or installation of other browser types in the documentation.

Find more in-depth information in the user guide section.

For advanced users, learn how to optimise performance: