Home » WebDriver Locating Strategies By CSS Tag and Attribute

WebDriver Locating Strategies By CSS Tag and Attribute

by Online Tutorials Library

Locating Strategies- (By CSS-Tag and Attribute)

In this section, you will learn how to locate a particular web element using CSS – Tag and Attribute Selector.

As we know that locating a particular web element involves inspection of its HTML codes.

Follow the steps given below to locate the Textbox on the sample web page.

Locating Strategies- By CSS-Tag and Attribute

  • It will launch a window containing all the specific codes involved in the development of the Text box.

Locating Strategies- By CSS-Tag and Attribute

  • Take a note of its Tag and Attribute.

Note: You can choose attributes such as id, class and name along with their values when you are locating through CSS – Tag and Attribute Selector.

  • Here, we will take a note of its tag and value of its id attribute.

Locating Strategies- By CSS-Tag and Attribute

The Java Syntax for locating a web element through CSS – Tag and Attribute Selector is written as:

Therefore, for locating the Textbox on the sample web page we will use the input tag with id attribute:

Similarly, for locating the Submit button on the sample web page we will use the button tag with id attribute:

We have created a sample script for you to get a better understanding of how to use CSS – Tag and Attribute Selector. We have embedded comments in each section of code which will guide you through whole automation process.

You may also like