1 Answers
What is Selenese and its types - Selenium IDE
Selenese is the language used in Selenium IDE for writing test scripts. It consists of various types of commands that help in creating robust and automated test cases.
Types of Selenese:
- Actions: These commands are used to perform actions on the elements of a web page, like clicking a button or entering text into a form field.
- Accessors: Accessors are used to store the values of elements on a web page, like getting the text of a paragraph or the value of an input field.
- Assertions: Assertion commands are used to verify the expected state of elements on a web page, like checking if an element is visible or the text matches a certain value.
By using these different types of Selenese commands effectively, testers can create comprehensive and reliable test suites using Selenium IDE.
Please login or Register to submit your answer