Author: stbadmin

  • Different operations or commands used on the WebElement

    Let’s start with the basic question. What is WebElement? In a simple language WebElement is “Value” enclosed in  HTML tags. Eg: for <p> HTML paragraph. </p> The webelement is everything within <P>… </P>. In Selenium We are using “findElement” or “findElements” command to find WebElement and perform an action on them. Below is the syntax: WebElement element = driver.findElement(By.id(“Username“)); This WebElement can…

  • Mobile application testing – 13 points, dos and donts

    Do’s of the mobile application testing. Real device testing – No simulator or emulator can replace real device experience. You can execute your smoke tests or sanity tests on emulators/simulators. But, regression should be done on real devices. Choose top 5 or top 10 models your users use. Early and Continuous Testing – Like desktop…