CSS Selector - Inner text17 Mar 2025 | 1 min read
![]() |
Selenium Integrated Development Environment (IDE) (Integrated Development Environment) is an open source web automation testing tool under the Selenium Suite. Unlike Selenium WebDriver and RC, it does not require any programming logic to write its test scripts rather you can simply record your interactions with the...
1 min read
CSS Selector - ID/Class and Attribute Syntax: css=<HTML tag><. Or #><value of Class or ID attribute><[attribute=Value of attribute]> '#' is used to symbolize ID attribute. It is mandatory to use hash sign if ID attribute is being used to create CSS Selector. "." is used to symbolize Class attribute....
3 min read
Selenium IDE- Locating Strategies (By XPath) XPath is a language used for locating nodes in XML documents. XPath can be used as a substitute when you don't have a suitable id or name attribute for the element you want to locate. XPath provides locating strategies like: XPath Absolute XPath Attributes XPath Absolute...
4 min read
Selenium IDE- Locating Strategies (By Name) The name locator type will locate the first element with a matching name attribute. For example, name=username. Let us consider an example on how to use name locator as a target for commands in Selenium IDE. We will create a login test, so that...
3 min read
Selenium For most of the Selenium commands, we need a target location which uniquely defines the web element in the context of a web application. A target consists of a locating strategy and has a format like: LocatorType = LocatorStrategy In Selenium IDE, a target works on six...
1 min read
CSS Selector - Class Syntax: css=<HTML tag><.><Value of class attribute> "." is used to symbolize Class attribute. It is mandatory to use dot sign if a class attribute is being used to create CSS Selector. The value of class is always preceded by a dot sign. Let us consider...
2 min read
Selenium IDE- Locating Strategies (By Identifier) Identifier was used as a default type earlier and not recommended now as it's not supported by WebDriver. With identifier, we can use locating strategies like ID and Name both. The first element with the matching ID attribute is used. If no element has...
3 min read
CSS Selector - Attribute Syntax: css=<HTML tag><[attribute=Value of attribute]> We can use value, type and name as an Attribute to create a CSS Selector. Value of attribute denotes the value which is being accessed at the time of using a particular attribute. Let us consider an example on how to...
2 min read
Selenium IDE- Commands (Selenese) Selenium commands, also known as "Selenese" are the set of commands used in Selenium IDE that run your tests. Using selenese, one can perform activities like: Testing the existence of UI elements based on their HTML tags. Test for specific content. Test for broken links. Testing input...
3 min read
Selenium IDE- Locating Strategies (By CSS) CSS stands for Cascading Style Sheets. It is a style sheet language which is used to describe the look and formatting of a document written in markup language. Locating web elements through CSS involves use of CSS Selector which identifies an element...
1 min read
We request you to subscribe our newsletter for upcoming updates.
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India