Move to Element and Click
MovetoElement and Click [Test]public void MovetoElementAndClick(){dr.Navigate().GoToUrl(“https://www.browserstack.com/”);Actions action = new Actions(dr);IWebElement element = dr.FindElement(By.XPath(“//a[@id=’signupModalButton’]”));action.MoveToElement(element).Click().Build().Perform();string expectedURL = “https://www.browserstack.com/users/sign_up”;string actualURL = dr.Url;Assert.AreEqual(expectedURL, actualURL,”User is not navigated to signup page”);} Read more »
RightClickonElement in Selenium
RightClickonElement using Selenium C# [Test]public void RightClickonElement(){dr.Navigate().GoToUrl(“https://www.Techtutorialz.com/”);Actions action = new Actions(dr);IWebElement element = dr.FindElement(By.XPath(“//a[text()=’View Tutorial Library’]”));action.ContextClick(element).Build().Perform(); } Read more »
Drag And Drop in Selenium
Drag And Drop in Selenium C#. Read more »
SELENIUM – SOAP Webservice Automation
SELENIUM – SOAP Webservice Automation Sample code to Automate SOAP Webservice in C#.. using System; using System.Collections.Generic; using System.IO; using System.Net; using System.Text; using System.Xml; using NUnit; using NUnit.Framework; namespace Read more »
How to handle Cookies in Selenium WebDriver
Cookies in Selenium When a website loads, it is common to see a pop-up asking the users to provide permission to the site to run cookies. A cookie is a Read more »
Selenium Practice Tests
Selenium Practice Tests Read more »
Selenium Interview Questions
Selenium Interview Questions Selenium Interview Questions Read more »
Selenium with CSharp Training
Selenium with CSharp online/offline training What is this course about? The Selenium with C# online training program aims at providing participants knowledge on Selenium, one of the best and most widely used Read more »