Posts

Showing posts from May, 2019

Robot Framework in python with RIDE

Image
Robot Framework is a Python-based, easy to use and extensible keyword-driven test automation framework for end-to-end acceptance testing and acceptance-test-driven development (ATDD). It can be used for testing distributed, heterogeneous applications, where verification requires touching several technologies and interfaces.RIDE RIDE is a development environment (GUI) for Robot Framework test cases.Robot Framework user guide. *************************************************************************************** QACult Best Software Testing Courses in Chandigarh tricity .- We love to enhance your knowledge. QACult is the premier institute catering to the requirements of experienced and fresh pass-out that gives leaders like you a new way to experience Quality engineering—while you work and giving you the flexibility to both advance your career. Our faculty have 12+ years of industrial experience and have developed many automation testing frameworks in java using TestNG or BD

Why is it better to use explicitly wait rather than implicitly wait in Selenium Web Driver?

Image
Hi Friend, Totally different concept for explicit wait and implicit wait. When Implicit wait defined, selenium waits for every element on page or screen to become available before it throws  NoSuchElementExeception. And Explicit wait is, when selenium waits for certain condition before performing any action on WebElement. Now see advantage of using explicit wait,where we can create WebbElement in different ways. For example WebDriverWait wait = new WebDriverWait(driver, 50); element=wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("loginButton"))); element=wait.until(ExpectedConditions.presenceOfElementLocated(By.id("loginButton"))); element=wait.until(ExpectedConditions.elementToBeClickable(By.id("loginButton"))); You can also see other implementations of these methods in webdriver API Now please see, how Webdriver methods can be used to wait dynamically for any element using these explicit wait methods. All of the be