C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Locating Strategies- (By XPath- Using And)In this section, you will learn how to locate a particular web element by XPath- Using And. Let us consider an example in which we will try to locate the Google Search Engine Text box by XPath- Using And. Follow the steps given below to locate the textbox provided on the home page of Google Search Engine.
The syntax for locating elements through XPath- Using And can be written as: //<HTML tag>[@attribute_name1='attribute_value1' and @attribute_name2='attribute_value2] or //*[@attribute_name1='attribute_value1' and @attribute_name2='attribute_value2] Using XPath-And, we can write the Java code along with the dynamic XPath location as: findElement(By.xpath("//*[@id='lst-ib' and @class='gsfi lst-d-f']"));
Next TopicLocating Strategies- By XPath
|