I strongly believe that a good manual tester always be a good automation tester . Maximum people choose testing career because they think that there is no such requirement of coding/prog…
Explicit Wait is a method in Selenium WebDriver to pause the script till defined element is not available on web page. When explicit wait method is called into a automation script then script will w…
Implicit Wait is a method in Selenium WebDriver to pause the script till defined time. When implicit wait method is called into a automation script then script will wait till defined time to execute…
Following tools are needed before to start the selenium Webdriver scripting:
Following should be the locator preference in Selenium automation scripting: 1. ID Locator 2. NAME Locator 3. CSS Locator 4. XPATH Locator 5. DOM Locator 1. ID (id) Locator: Select the ele…
Assert command in selenium:
Need of automation testing is because of following: Frequent regression testing, sanity testing & retesting of application or module.
Automation testing is the use of software in following manners: To set test preconditions: We can use automation testing to set preconditions of a test scenario. For example, we need to …