DEV Community

Tony Colston
Tony Colston

Posted on

2 1

other selenium drivers

Normally I work with Chrome a lot. But there are other browsers. Do those browsers work with Selenium too?

Yes.

Each of the major browser vendors have provided a driver (similar to chromedriver) that allows Selenium to work with their respective browser.

Firefox

Here is information on geckodriver. https://firefox-source-docs.mozilla.org/testing/geckodriver/#for-users

And here is where you can download it: https://github.com/mozilla/geckodriver/releases

IE

Sadly this is more complex than it needs to be. It is heavily tied to your Selenium version so you will need to pick the driver based on that.

See here for the download: https://selenium-release.storage.googleapis.com/index.html

Safari

This one is easier than I thought as long as you are on a new Safari. You probably already have it! If you are on El Capitan or higher... just look here on disk /usr/bin/safaridriver.

Opera

See the releases on this page for the download: https://github.com/operasoftware/operachromiumdriver

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay