Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Targeting different platforms (Browser, OS) using WebDriver?

I am a newbie to Automated Testing using WebDriver, so I have a few questions just to clear some things in my head. On a few pages, I saw the samples of executing WebDriver tests on different platforms by just targeting these for the capabilities of the browser or OS.

capability= DesiredCapabilities.firefox();
capability.setBrowserName("firefox"); 
capability.setPlatform(org.openqa.selenium.Platform.ANY);

or

capability= DesiredCapabilities.internetExplorer();
capability.setBrowserName("iexplore"); 
capability.setPlatform(org.openqa.selenium.Platform.WINDOWS);

As mentioned in: Executing tests Concurrently on different OS and Browsers with WebDriver using Java and TestNG

So, if I understand that correctly, actually it is possible to run tests and verify those on the different OS and Browsers just by using the libraries provided by the Selenium?

If so, how accurate are these tests for typical cross browser/platform html/JavaScript issues?

Thank you

like image 333
vukovicb Avatar asked Nov 21 '13 16:11

vukovicb


People also ask

Can Selenium WebDriver supports multiple web browsers?

You can create test scripts using different programming languages like Java, Python, PHP, etc using Selenium. You can test your web apps on different browsers like Google Chrome, Safari, Firefox, IE, Edge, Opera etc.

Does Selenium support multi platform compatibility?

Selenium focuses on compatibility, and supports a wide range of browsers, platforms, languages and frameworks.

How does Selenium handle different browsers?

Get the handles of all the windows that are currently open using the command: Set<String> allWindowHandles = driver. getWindowHandles(); which returns the set of handles. Use the SwitchTo command to switch to the desired window and also pass the URL of the web page.

Does Selenium WebDriver support browser compatibility?

> Selenium WebDriver supports Browser compatibility tests on almost every popular browser, including Chrome, Firefox, IE, Opera, and Safari. > The WebDriver API drives the web browser as the real user would drive it.


1 Answers

This is a great question. I'm going to try to break this down into smaller packets of information so that it hopefully makes sense for old pros and newbies alike.

Without Selenium Grid:

For starters, it is possible to use individual drivers for all the different browser/OS combinations you wish to run the tests on. The drawback is you have to make some (though usually minimal) code adjustments for each browser's driver. This also means breaking the DRY principle. To learn more about writing these kinds of tests check out this documentation. (Also note that if you wanted to run these tests on each build via CI on something like Jenkins you need to have the actual browsers running on a slave on your own hardware, but these are more the DevOps concerns.)

Using Selenium Grid:

More commonly used for the sort of goals you mentioned (and referenced in the other post you linked to), Selenium Grid is a server that allows multiple instances of tests to run in different web browsers on remote machines. The more intro oriented docs for this are here and more forward looking docs are here.

Running Local or in the Cloud: With Selenium Grid you are going to go one of two ways.

  1. Run on your own hardware locally (or wherever your company has machines to remote into)
  2. Use an online service like Sauce Labs or Testing Bot

A nice "what this might look like in Java" for having an online service provide the browsers is shown in this Sauce Labs page and for Testing Bot here.

Selenium Can be Written in a Ton of Languages: Selenium follows the WebDriver API and for C#, Java, Perl, PHP, Python, Ruby, JavaScript (Node) or other languages, you still can write test scripts in any of these (and they provide the “frameworks” for some of these officially, while others are community driven) and still have the run tests run solidly in all modern browsers.

Concerning Mobile Devices There is some good discussion over here that discusses how "close to the real thing" you want your mobile browser tests to be, since the iPhoneDriver and AndroidDriver are largely based on use through WebView, which is less close to the real thing. They are now finding themselves being replaced by ios-driver, Selendroid, and Appium.

To Sum It Up

So to answer what I think you’re getting at with,

... is possible to run tests and verify those on the different OS and Browsers just by using the libraries provided by the Selenium

the answer is that you can use Selenium Grid and an online service or you will have to use base Selenium/Selenium Server along with a number of other libraries to test all modern browser and OS combinations, but I'm sure many shops do just that because they have the experience and expertise to pull it off.


Alternate (Non-Selenium) Option to Write Once and Test Across Browsers: If you have a team with JavaScript experience and you're looking to hit the same goal of testing across browsers without the overhead of Selenium, Automates JavaScript Unit Testing with Sauce Labs (formerly Browser Swarm) would be a good option.

like image 110
Eric D. Johnson Avatar answered Oct 16 '22 00:10

Eric D. Johnson