When and how I can locate element by Tagname using selenium webdriver? Please explain with an example When and how I can locate element by Tagname using selenium webdriver? Please explain with an example selenium selenium

When and how I can locate element by Tagname using selenium webdriver? Please explain with an example


Now supposing, software web element do not have any ID or Class Name then how to locate that element in selenium WebDriver ? Answer is there are many alternatives of selenium WebDriver element locators and one of them is Locating Element By Tag Name.

Locating Element By Tag Name is not too much popular because in most of cases, we will have other alternatives of element locators. But yes if there is not any alternative then you can use element's DOM Tag Name to locate that element in webdriver.

enter image description here

Here you can select the tagname as a locator like:

//Locating element by tagName and store its text in variable dropdown. String dropdown = driver.findElement(By.tagName("select")).getText();


we use the actual name of the tag like for anchor and for table and input for . This helps to get all the elements with a given tag name.Example: to select first element of given input

var dialog = driver.FindElement(By.ClassName("ladialog"));var save = dialog.FindElements(By.TagName("input"))[0];save.Click();


Thanks to the deprecation of By.tagName you should use By.css for @Shah 's answer....

String dropdown = driver.findElement(By.css("select")).getText();