Software Testing & Quality Assurance
Saturday, October 20, 2018
Using 'text()' Method in 'contains()' Method
Syntax to use text() method in contains() method is given below:
//div[contains(text(), 'text')]
For example:
//a[contains(text(), 'ac')]
Here,
//a[contains(text(), 'ac')]
searches all the 'a' elements which contains 'ac' as attribute text value.
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Double Slash ' // ' After Double Slash ' // ' In XPath
What is XPath?
XPath is defined as XML path. As XPath is a query language which is based on the tree representation of the XML document, it provides th...
Basic XPath (Tag, Attribute & Value)
Single Attribute: Single attribute XPath uses one attribute to locate an web element. Syntax: //tag[@attribute = 'value'] Ex...
Types of XPath
XPath can be created in two ways: Absolute XPath Relative XPath Absolute XPath The easiest way of finding the XPath is to use the...
No comments:
Post a Comment