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 […]

Read More

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 […]

Read 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 […]

Read More