Css Selectors for Selenium WebDriver
CSS selectors are a great and fast way to locate elements in Selenium WebDriver. I have listed down some basic CSS Selectors for Selenium WebDriver which are commonly used. The goal of this tutorial is...
View ArticleHighlight an Element using Selenium Web Driver
Sometimes we want to make sure that we have used a right locator to identify an element. For this purpose, we can highlight that element before applying any operation on that. In this way, we will be...
View ArticleTest Automation on Android using Appium, C# and MSTest Part 2
This is the second part of the series “Test automation on Android using Appium, C# and MSTest”. If you missed the first part, Click here. Coding Time Now it is time to code. Open Visual Studio Ultimate...
View ArticleTest Automation on Android using Appium, C# and MSTest
This is a two part series of test automation on android using Appium, C# and MSTest. for part 2 click here. Prerequisites for this tutorial: Visual Studio Ultimate (2010 or above) (Because MSTest is...
View ArticleSelenium WebDriver in C#: Switch To new window or tab
There are many instances when you click on a link and it opens a new window or tab. Selenim WebDriver provides a way to switch to that new window using SwitchTo() method. See the code below...
View ArticleSelenium WebDriver : Cross Browser Testing
One of the great features of Selenium WebDriver is Cross browser testing. It allows you to create single test case which can execute across different browsers. That means you write one test case to...
View ArticleSelenium WebDriver in C#: How to use the existing window of Chrome Browser.
Selenium WebDriver with all its advantages has some pain points. One of them is to reuse the existing window of your opened browser so that you can continue your test cases from where they are failed....
View ArticleSelenium WebDriver: Tools to identify Locators easily
When automating a web application, the most important and time taking task is to come up with unique locators for the elements present on the web page. Once you find out the correct locator, the rest...
View ArticleSelenium in Java: All Resources.
For all those who want to learn Selenium in Java, I have searched and compiled all those resources which I personally found useful. Please go through these links and bookmark those which you find...
View ArticleJMeter Tutorials: All Resources
This post is a collection of JMeter Tutorials from the web. JMeter is a leading open source load testing tool which is widely used across the globe. When I first tried to use JMeter, I feel that it...
View Article