Skip to main content

Browsers supported by Selenium Webdriver

Firefox:
Support for Firefox is the latest release, the previous release, the latest ESR release and the previous ESR release.

For example Selenium 2.40.0 (released on Feb 19, 2014) supports Firefox 27, 26, 24, 17.

Selenium with Firefox can be run on any platform that Firefox supports for those versions, that also allow users to install a custom Firefox extension.

Internet Explorer:
Versions 6, 7, 8, 9 and 10 are supported. 11 is currently awaiting a fix for this issue.

The selenium project tests each release on Windows XP, 7 and 8.

Google chrome: 
All versions.

Safari:
Safari Driver requires Safari 5.1+ and only runs on OS X.

Opera:
Opera Driver requires Opera 12.x and older versions.

Comments

Popular posts from this blog

How to create package inside a project?

What Is a Package? A package is a namespace that organizes a set of related classes and interfaces. Conceptually you can think of packages as being similar to different folders on your computer. You might keep HTML pages in one folder, images in another, and scripts or applications in yet another. Because software written in the Java programming language can be composed of hundreds or thousands of individual classes, it makes sense to keep things organized by placing related classes and interfaces into packages. -> Right click on the Project (Make sure you should right click on project, because you are creating package inside the project). -> Go to New. -> Click on Package. -> In New Java Package window, enter package name in Name text box. -> Now click on Finish . -> Now you can see the package inside the project at Project Explorer area. Now your package is ready.

How to create workspace in eclipse?

We have to create workspace to save our java files. -> Double click on the eclipse. -> You can choose any workspace using browse button . -> Click on OK after select the workspace. -> Now eclipse editor will launch to write scripts.