Web Elements
Web Elements are the building blocks for creating automation tests. Web elements represent interactive components on a webpage, such as buttons, input fields, links, or images, and can be identified, interacted with, and verified in test cases. They are essential for defining the actions and assertions that make up an automated test workflow.
🚀 Identifiers
Identifiers are used to locate specific web elements.
🚀 Actions
Actions are the operations performed on the web elements.
🚀 Assertions
Validate the expected behavior of the web elements.
Identifying Web Elements​
Each web element must be accurately identified to ensure it can be located during test execution. Identifiers allow you to specify unique characteristics or properties of an element, making it possible to target and interact with specific elements reliably.
For more detailed information on how to set up identifiers for web elements, see the Identifiers section.
Actions on Web Elements​
Actions define the interactions that can be performed on web elements. These may include clicking, typing, hovering, or other operations necessary to simulate user behavior. Actions are at the core of automation, enabling tests to mimic real-world interactions.
For a comprehensive list of supported actions and how to configure them, refer to the Actions section.
Assertions on Web Elements​
Assertions are used to validate the state or properties of web elements, helping ensure the correctness of test outcomes. They allow tests to check if an element is visible, contains specific text, or matches a particular condition, providing checkpoints to verify expected behavior.
To learn more about configuring assertions for web elements, visit the Assertions section.