Desired Capabilities in Selenium WebDriver
Desired Capabilities is one of the most commonly used concept yet one of the most complex due to many underlying factors which work together with…
Desired Capabilities is one of the most commonly used concept yet one of the most complex due to many underlying factors which work together with…
In order to run JavaScript commands with Selenium WebDriver, we can either use JavaScriptExecutor or ExecuteScript in Selenium. ExecuteScript is a part of Selenium WebDriver but its…
Introduction: Today, we’re diving into one of the most essential tasks in web automation: handling data. Specifically, we’ll explore how to automate excel with java…
Cucumber is a BDD-based tool that works well with selenium and many other tools. Here we have a sample Runner class to be used with…
In order to read write excel file in Java and APACHE POI, we can use this method which uses FileInputStream, and XSSFWorkbook to get into…
Similar to reading data from an excel file, you would require to write data in excel file using java in your test automation. Read further…
Any type of testing requires test data in Test automation Let’s see how we can read Excel file in Java and use that in Selenium…
WebTables are a very important part of any web-based application and Often we come across a scenario where we have to validate data in a…
In any web-based application, drop-downs are used to help the end user to select a value from a set of predefined values. e.g. Selecting a…
In order to get all options from a dropdown in Selenium WebDriver, we can utilize the same Select class, which we use to select a…