Master this deck with 21 terms through effective study methods.
Generated from uploaded pdf
Used to find defects in software through automated tools.
Saves time and money through faster execution.
Cannot test mobile apps or windows applications.
Regression, Smoke, and Sanity testing are commonly automated.
Defines rules and best practices for systematic testing.
It is free and supports multiple programming languages.
A Firefox plugin for recording and playing back scripts.
The language used to write test scripts in Selenium IDE.
Runs tests on different machines and browsers in parallel.
Assert stops execution on failure; Verify continues regardless.
Soft Assert collects errors; Hard Assert stops on failure.
setSpeed() applies a delay to all operations; sleep() is one-time.
Implicit, Explicit, and Fluent waits are available.
Can cause unpredictable wait times in the script.
Used to locate elements in an XML document.
Absolute starts from the root; Relative starts from any node.
HTMLUnitDriver is the fastest as it runs without a browser.
Common exceptions include ElementNotVisibleException and StaleElementReferenceException.
Represents an HTML element in a web page's DOM.
A browser automation framework that communicates directly with browsers.
SearchContext acts as the super interface.