6

Selenium C# MSTest Test Automating Angular, React, VueJS and 20 More

 2 years ago
source link: https://www.automatetheplanet.com/selenium-automate-all-cshap-mstest/?utm_campaign=selenium-automate-all-cshap-mstest
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Selenium C# MSTest Test Automating Angular, React, VueJS and 20 More

In the new article from the Web Automation Series with C#, we will talk about creating a data-driven MSTest test automating all major web technologies such as React, Angular, Vue.js, and many more. Many people speculate that Selenium WebDriver is outdated and cannot work for modern web technologies, thus promoting other questionable tools such as CypressPlaywrightProtractor (which is going away). Again if you apply the proper design patterns and best practices, you can make almost any tool work. I am not entirely against the mentioned solutions. You can still succeed. I am just saying that many people started recently saying awful stuff about Selenium. I can say the same about these solutions. With the proper knowledge, you can easily automate everything with Selenium. This article is the proof.

The Use Case

What are we going to test? Recently, I watched a webinar organized by the Test team of JetBrains. It was OK. It was in Java. The most helpful thing I got was this fantastic website on which we will experiment. The website is called TodoMVC and is implementing the same TODO app functionality using 30+ most popular web technologies. Everything is open-source and free.

todomvc front

When you click on a particular technology, the corresponding app written on it opens.

todomvc-todo-app

We will create a single data-driven test using MSTest, where we will open 20+ technologies. Then we will add a few TODO items, mark as complete the first one and verify the numbers of the items left.

The Selenium Test

I suggest to check out MSTest Cheat Sheet. Below you can see how a single test looks like automating the jQuery TODO app. On purpose I organized the login into few private methods.

[TestMethod]public void VerifyTodoListCreatedSuccessfully_When_jQuery(){ _driver.Navigate().GoToUrl("https://todomvc.com/"); OpenTechnologyApp("jQuery"); AddNewToDoItem("Clean the car"); AddNewToDoItem("Clean the house"); AddNewToDoItem("Buy Ketchup"); GetItemCheckBox("Buy Ketchup").Click(); AssertLeftItems(2);}private void AssertLeftItems(int expectedCount){ var resultSpan = WaitAndFindElement(By.XPath("//footer/*/span | //footer/span")); if (expectedCount <= 0) { ValidateInnerTextIs(resultSpan, $"{expectedCount} item left"); } else { ValidateInnerTextIs(resultSpan, $"{expectedCount} items left"); }}private void ValidateInnerTextIs(IWebElement resultSpan, string expectedText){ _webDriverWait.Until(ExpectedConditions.TextToBePresentInElement(resultSpan, expectedText));}private IWebElement GetItemCheckBox(string todoItem){ return WaitAndFindElement(By.XPath($"//label[text()='{todoItem}']/preceding-sibling::input"));}private void AddNewToDoItem(string todoItem){ var todoInput = WaitAndFindElement(By.XPath("//input[@placeholder='What needs to be done?']")); todoInput.SendKeys(todoItem); _actions.Click(todoInput).SendKeys(Keys.Enter).Perform();}private void OpenTechnologyApp(string name){ var technologyLink = WaitAndFindElement(By.LinkText(name)); technologyLink.Click();}private IWebElement WaitAndFindElement(By locator){ return _webDriverWait.Until(ExpectedConditions.ElementExists(locator));}

The method WaitAndFindElement waits for the web elements to appear on the page, and then we return them. We use the WebDriverWait + the ExpectedConditions methods that come from the DotNetSeleniumExtras.WaitHelpers NuGet package. We use another method part of the same package in the ValidateInnerTextIs method - TextToBePresentInElement

Another interesting point is that I used lots of XPath Axes locators for most elements to make the tests stable and maintainable. You can check two articles that can help you write maintainable good locators - Most Underrated WebDriver Locator – XPath and Most Exhaustive XPath Locators Cheat Sheet. I suggest you learn to write the XPath yourself than relying on plugins since they generate, most of the time, ugly, not maintainable XPath.

Another interesting point is how we add a TODO item to the list. We don't have a submit button, but instead, we need to press Enter. To do that, we use the Actions class, which allows us to do all sorts of advanced interactions. To learn all different actions you can do in WebDriver check - Most Complete Selenium WebDriver C# Cheat Sheet

Data-driven Test for 22 Web Technologies

To test all major technologies in a single test, we can use the MSTest DataRow attribute. Next, the TestInit method marked with the TestInitialize attribute executes before each test. There we start the browser each time and initialize the WebDriverWait Actions classes. Finally, the TestCleanup method marked with the TestCleanup attribute closes the browser.

[TestClass]public class TodoTests{ private const int WAIT_FOR_ELEMENT_TIMEOUT = 30; private IWebDriver _driver; private WebDriverWait _webDriverWait; private Actions _actions; [TestInitialize] public void TestInit() { _driver = new ChromeDriver(); _driver.Manage().Window.Maximize(); _webDriverWait = new WebDriverWait(_driver, TimeSpan.FromSeconds(WAIT_FOR_ELEMENT_TIMEOUT)); _actions = new Actions(_driver); } [TestCleanup] public void TestCleanup() { _driver.Quit(); } [DataRow("Backbone.js")] [DataRow("AngularJS")] [DataRow("React")] [DataRow("Vue.js")] [DataRow("CanJS")] [DataRow("Ember.js")] [DataRow("KnockoutJS")] [DataRow("Marionette.js")] [DataRow("Polymer")] [DataRow("Angular 2.0")] [DataRow("Dart")] [DataRow("Elm")] [DataRow("Closure")] [DataRow("Vanilla JS")] [DataRow("jQuery")] [DataRow("cujoJS")] [DataRow("Spine")] [DataRow("Dojo")] [DataRow("Mithril")] [DataRow("Kotlin + React")] [DataRow("Firebase + AngularJS")] [DataRow("Vanilla ES6")] [DataTestMethod] public void VerifyTodoListCreatedSuccessfully(string technology) { _driver.Navigate().GoToUrl("https://todomvc.com/"); OpenTechnologyApp(technology); AddNewToDoItem("Clean the car"); AddNewToDoItem("Clean the house"); AddNewToDoItem("Buy Ketchup"); GetItemCheckBox("Buy Ketchup").Click(); AssertLeftItems(2); } // private methods}

Video Explanation

Recently as part of my XUnit Selenium Video Course for LambdaTest, I recorded a chapter where I explain step by step how to create a similar project and tests using xUnit. You can find the video below.

Online Training

  • NON-FUNCTIONAL

START:13 October 2021

Enterprise Test Automation Framework

LEVEL: 3 (Master Class)

After discussing the core characteristics, we will start writing the core feature piece by piece.
We will continuously elaborate on why we design the code the way it is and look into different designs and compare them. You will have exercises to finish a particular part or extend it further along with discussing design patterns and best practices in programming.

Duration: 30 hours

4 hour per day

-20% coupon code:

BELLATRIX20

About the author

Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK