Selenium C# – Find Element by TagName

The below code can be used to detect any element on a WebPage by TagName using Selenium in C#

//HTML Code
<button class='login'>Login</button>

//Corresponding Selenium C# Code
WebDriver.FindElementByTagName("button").Click();

//Code when there is Custom function
int WaitTime=10;
WebDriver.FindElement(By.TagName("button"),WaitTime).Click();

If there is a custom wait function as  here, then you can use the above  code also!

You may also like...