Search Results for: exception

MySQL DataBase Testing

MySQL Data Base INSTALLATION testing Step-by-Step Guide Introduction SQL Part of “MYSQL” stands for Structured Query Language. MYSQL is a relational database from oracle where data is stored in tables…. Read more »

Allure Reporting

Refer to the below Links for Practice Collections in Java Complete List of Selenium Basics 50 Real Time Interview Questions Real Time Scenario’s Java Platform Standard Edition 8 Documentation Java… Read more »

Selenium Locators

Selenium Locators Identification of Objects/WebElements/HTML Components can be done in 8 ways: (or) Locators: 1. ID Locator driver.findElement(By.id(“usernmae”)) 2. NAME LOCATOR driver.findElement(By.name(“username”)); driver.findElement(By.name(“password”)); – 3. CLASSNAME LOCATOR class=”textboxcolor” driver.findElement(By.className(“textboxcolor”)); class=”inputtext… Read more »

Advanced Selenium

Implicit Wait,Explicit Wait,Fluent Wait,TakesScreenshot Synchronization The communication between Selenium WebDriver script and the Application under Test (AUT) is known as synchronization. Resolution: Insert wait statements in the WebDriver script. Unconditional… Read more »