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…
This blog will help you to know about the best practices of test automation. It also provides specific information about why and when to start the automation, how to cover all the expectation and ob…
I am writing this article to brief better understanding about Automation Testing career in IT/Software Industry. In these days there is very good opportunity as well as growth in this career wi…
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:
Captcha is a security feature of application, if you break this using any tool it means your application security is breakable.
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:
This locator is start with current element. For example, xpath=//td[4] is the relative xpath locator for link22 element in below HTML code:
This locator is start with root element. For example, xpath=/html/body/table[@id='table1']/tbody/tr/td is the absolute xpath locator for link11 element in below HTML code:
ID (id) Locator: Select the element with the specified @id attribute.
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 …