Back to Resources

Blog

Posted September 9, 2022

Cross-Browser Testing with Selenium

Cross-browser testing is critical for ensuring that software development teams provide their customers with flawless user experiences through cross-browser compatibility.

quote

What Is Cross-Browser Testing?

Cross-browser testing is a type of functional testing used to ensure that web sites and web applications are compatible with various browsers. Cross-browser testing ensures that a site works as expected across popular browsers, allowing more people to access and use it regardless of their device, operating system, or resolution.

Some of the differences discovered in different browsers include image orientation, user input positioning and validation, JavaScript implementation, font size, and page alignment. In addition, some browsers are incompatible with certain operating systems. Cross-browser testing allows software testers to spot and address such issues, thereby improving the user experience.

Getting started with cross-browser testing can be costly and difficult, especially given the various browsers, operating systems, and device combinations that you’ll need to test. While there are cloud-based cross-browser testing platforms, you can use Selenium and Python to create an internal testing grid. Continue reading to learn how to perform cross-browser testing with Selenium and Python.

What Is Selenium?

Selenium is a free open source software tool for automated cross-browser testing. It can validate the interoperability of websites and web applications across many platforms and browsers. You can create test scripts using Selenium with a single interface and a programming language like C#, Python, Node, or Java.

Why Use Selenium for Cross-Browser Testing?

Selenium is a well-known framework for automated cross-browser testing. By automating web app tests with Selenium, developers can test web apps across different operating systems and browser configurations. This ensures that every user has the same experience, regardless of their OS or browser version. When using Selenium for cross-browser testing, you can automate your tests and take advantage of a wide range of tools and possibilities. Due to its adaptability, it can simulate various test scenarios and use cases.

Selenium is also a good choice for cross-browser testing because it comes as a software suite with different options, including:

  • Selenium WebDriver, which is a set of browser-operating bindings for various languages. It offers an interface where many methods can be declared and applied to end-to-end testing.

  • Selenium IDE, which is an add-on that makes it easy to record and replay script interactions with browsers.

  • Selenium Grid, which is a software program suite designed to run many test cases against a wide range of browsers, operating systems, and hardware simultaneously. This facilitates testing and scales up test suites as they expand.

Benefits of Cross-Browser Testing

HTML, CSS, and JavaScript are rendered differently on websites and apps despite the fact that browser vendors follow Open Web Standards. For instance, Safari uses WebKit, whereas Firefox uses Gecko and Chrome and Microsoft Edge uses Blink. As a result, many browsers display the same site differently. 

Prior to the introduction of a product, web developers and testers are responsible for abstracting browser differences through cross-browser testing. Cross-browser testing enables the speedy identification of browser-specific incompatibility issues. It makes sure that a substantial section of your application's audience won't be alienated because of their operating system or browser.

Other benefits of cross-browser testing include:

  • It ensures concurrent test execution results, which aids scalability.

  • It ensures that problems are discovered and fixed earlier, saving time and money.

  • When performed automatically, cross-browser testing extends the test coverage provided by concurrent execution across a variety of browsers, devices, and operating systems.

  • It improves the consumer experience by ensuring consistency in usability – regardless of their operating system and browser combination.

Automated vs. Manual Cross-Browser Testing with Selenium

To begin cross-browser testing, decide how much of the process will be automated and how much will be done manually. A human tester performs manual cross-browser testing on websites and mobile applications without the assistance of automated tools or scripts. This allows manual testers to examine aspects of the software that test scripts frequently overlook, such as design, usability, and feel. One disadvantage of manual cross-browser testing is that it takes a long time due to the amount of manual labor involved.

In contrast to manual testing, automated cross-browser testing is quicker and more practical because test scripts are created and run automatically using technologies like Selenium, which compares the outcomes to what was expected. As a result, teams can ship code more quickly and shorten their release cycles. In this post, we'll concentrate on utilizing Python and Selenium to perform automated cross-browser testing.

Getting Started with Cross-Browser Testing Using Selenium and Python

We’ll show you how to perform cross-browser testing in two stages:

  1. Writing the test script using Python code.

  2. Running the tests on Sauce Labs.

Writing the Test Script Using Python Code

In order to write the Python test script, you must meet certain prerequisites. This includes installing the following:

  • Python 3: Download and set up Python 3 on your operating system.

  • A code editor: Install a code editor on your computer (ideally Visual Studio).

  • Selenium’s WebDriver for Python: Run pip3 install selenium in your terminal to install the Selenium WebDriver.

A browser driver proxy: Install the most recent browser driver that works with your OS and browser version. You can either hard code the location of the browser driver or set up the environment path using driver management software. For the purposes of this tutorial, we’ll import it straight from the WebDriver, as demonstrated below:     

1
from selenium import webdriver
2
from selenium.webdriver.chrome.service import Service as ChromeService
3
from selenium.webdriver.edge.service import Service as EdgeService
4
from selenium.webdriver.firefox.service import Service as FirefoxService
5
from selenium.webdriver.ie.service import Service as IEService
6
from webdriver_manager.chrome import ChromeDriverManager
7
from webdriver_manager.firefox import GeckoDriverManager
8
from webdriver_manager.microsoft import EdgeChromiumDriverManager
9
from webdriver_manager.microsoft import IEDriverManager

Now, you can perform cross-browser testing with Python code.

Create a file called “test.py” on your preferred IDE, then paste the following code to test different browsers (like Firefox, Chrome, Internet Explorer, Safari, and Microsoft Edge):

1
from selenium import webdriver
2
from selenium.webdriver.common.by import By
3
import unittest
4
class SeleniumCrossBrowserTest(unittest.TestCase):
5
6
def setUp(self):
7
'''
8
Start the Selenium WebDriver in a browser of your choice.
9
We use Chrome here but you can replace Chrome with one of the other options.
10
'''
11
# self.driver = webdriver.Safari()
12
# self.driver = webdriver.Edge()
13
# self.driver = webdriver.Firefox()
14
self.driver = webdriver.Chrome()
15
16
def tearDown(self):
17
'''Quit the browser session once you are finished'''
18
self.driver.quit()
19
def test_sauce_labs(self):
20
'''
21
The setUp function initializes the right virtual machine browsers on Sauce Labs
22
Tests for a[text()] elements within the Sauce Labs' Homepage Platforms and Pricing
23
'''
24
self.browser.get("https://www.saucelabs.com")
25
element = self.browser.find_element(By.XPATH, '//a[text()="Platform"]')
26
self.assertTrue(element.is_displayed())
27
element.click()
28
pricing_link = self.browser.find_element(By.XPATH, '//a[text()="Pricing"]')
29
self.assertTrue(pricing_link.is_displayed())
30
if __name__ == '__main__':
31
unittest.main(verbosity=2)

 II. Running Tests on Sauce Labs

Once you have your test script coded as above, you need to replace your environment variables with actual Sauce Labs credentials (a username and secret key). First, sign up for a Sauce Labs account if you don’t already have one.

Next, get your username and access key. You will use this access key in combination with your username to interact with Sauce Labs.

Then, assign the environment credentials within the code:

1
Username = =os.environment.get('SAUCE_USERNAME',None) #your sauce labs username
2
Access_key = os.environment('SAUCE_ACCESS_KEY',None) #your sauce labs secret key
3
URL="http://{}:{}@ondemand.saucelabs.com:80/wd/hub".format(
4
sauce_username,
5
sauce_key
6
)

Now the tests look like this:

1
from selenium import webdriver
2
from selenium.webdriver.common.by import By
3
import unittest
4
import os
5
class SauceCrossBrowserTest(unittest.TestCase):
6
def setUp(self):
7
'''
8
Start the Selenium WebDriver as a RemoteDriver connecting to Sauce Labs.
9
'''
10
username = os.environ.get('SAUCE_USERNAME')
11
access_key = os.environ.get('SAUCE_ACCESS_KEY')
12
13
caps = webdriver.ChromeOptions()
14
sauce_caps = {
15
"browserName": "Chrome",
16
"browserVersion": "latest",
17
"platformName": "Windows 10"
18
}
19
caps.set_capability('sauce:options', sauce_caps)
20
21
sauce_url = "https://{}:{}@ondemand.us-west-1.saucelabs.com/wd/hub/".format(username, access_key)
22
23
self.driver = webdriver.Remote(
24
command_executor=sauce_url,
25
options=caps
26
)
27
28
def tearDown(self):
29
'''Quit the browser session once you are finished'''
30
self.driver.quit()
31
32
def test_sauce_labs(self):
33
'''
34
The setUp function initializes the right virtual machine browsers on Sauce Labs
35
Tests for a[text()] elements within the Sauce Labs' Homepage Platforms and Pricing
36
'''
37
self.driver.get("https://www.saucelabs.com")
38
element = self.driver.find_element(By.XPATH, '//a[text()="Platform"]')
39
self.assertTrue(element.is_displayed())
40
element.click()
41
pricing_link = self.driver.find_element(By.XPATH, '//a[text()="Pricing"]')
42
self.assertTrue(pricing_link.is_displayed())
43
44
if __name__ == '__main__':
45
unittest.main(verbosity=2)

Now, it’s time to run the test. To do so, run the following Python code file in the terminal: 

python test.py

To view the results of your cross-browser testing, simply log back in to your Sauce Labs account and navigate to the Sauce Labs Dashboard.

Getting Started with Selenium Cross-Browser Testing on Sauce Labs

In this article, we discussed cross-browser testing and explained how to automate it with Python and Selenium. Cross-browser testing with Selenium ensures that your web application is compatible with all major browsers and that it provides a consistent user experience. 

Due to the growing number of web browsers and sophisticated cloud applications, organizations need a more advanced cloud-based testing platform with increased processing capacity. The Sauce Labs platform provides more automation, greater test coverage, and overall application efficiency. It enables Selenium-based web application and cross-browser testing via the Sauce Labs cloud solution. For more information, you can check out our comprehensive Selenium on Sauce Labs documentation.

Published:
Sep 9, 2022
Share this post
Copy Share Link
© 2023 Sauce Labs Inc., all rights reserved. SAUCE and SAUCE LABS are registered trademarks owned by Sauce Labs Inc. in the United States, EU, and may be registered in other jurisdictions.