
testing


Appium auto-retrieve Device name & Android version
In the new way, we can programmtically find both values and its quite easy. Let me first show implementation and then explain it. The trick is to get them using adb as shown above,* Device name – adb get-serialno* Android version – adb shell getprop ro.build.version.release THE END

Testcase Maintenance in QA
Greetings! Have you come across a situation where you need to manage 200-400 test scenarios and had a tough time dealing with it? My answer is Yes and has been in those situations multiple times. Below are some basic guidelines I followed to make my life easy 🙂 It can apply to both manual and […]

Execute Nightwatch test on CircleCI
Click ‘Setup Project’ as shown above On the next page, click ‘Add Config’ This will permit that circleCI has the required authority to read the Nightwatch’s GitHub activity. Next is to create a configuration file that contains E2E execution steps. It needs to be stored in the project root within folder – .circleCI/config.yml Below is […]

Selenium FindsByAll, FindsBySequence and FindsBy difference in C#
This article is about difference between FindsByAll, FindsBySequence and FindsBy attributes in Selenium. They are found in the PageObject namespace – OpenQA.Selenium.Support.PageObjects . A piece of important news about this namespace is that it is obsolete. More information on it – link. An alternative is to use the SeleniumExtras package. SETUP To explain, I will […]

Tour of Quality in Agile World
Welcome aboard on the QA tour! Today we are going to explore various sights and attractions such as agile testing, automation, test failures, and much more.

Overview of C# Selenium WebDriver Namespace
While I was trying to understand the selenium namespace, found it confusing since it has too much inside and some obsolete namespace as well. Using Selenium webdriver 3.7.0 to explain the library. [Note: This is not an implementation article and assuming reader knows basic implementation of webdriver] The C# selenium library is can be grabbed from […]