Tag selenium

Selenium Grid setup for Remote execution

Why do you need Selenium Grid setup for remote execution? Scenario1 – You need to run your selenium automation tests with different browser/OS combinationScenario2 – You need to run selenium tests in parallel across different or same browsers….. There can…

UI Automation using Appium and WinAppDriver

Introduction to Appium Appium is an open source cross platform test automation framework for use with native, hybrid and mobile web apps. It drives iOS, Android, and Windows apps using the WebDriver protocol. Platforms supported are:  iOS Android Windows FirefoxOS Step…

Using Selenium to Scroll on pages

By using selenium to scroll on pages, you can do automated testing of a page which is dynamically loaded. Something like linkedin or facebook where you get the updates as you scroll down the page. To scroll throught the page…

Using Selenium with JMeter

To use Selenium Webdriver with JMeter, install “Webdriver” plugins. The WebDriver sampler is useful if you want to test for performance AJAX or GWT based web applications. Download WebDriver plugins from Unzip the files and copy in the lib…

Page Object Model in Selenium

Page Object is a Design Pattern which has become popular in test automation for enhancing test maintenance and reducing code duplication. A page object is an object-oriented class that serves as an interface to a page of your Application under test.…