Selenium

Functional-Testing.png
| 7 min read
When automating web applications using Selenium WebDriver with Java, testers sometimes encounter scenarios that cannot be handled by WebDriver alone. This is where Java's Robot class comes in, offering a means to simulate user interactions at a level that goes beyond WebDriver's capabilities. Here's a look at the benefits of integrating the Robot class into your Selenium tests, along with a sample code snippet.
Zyxware default image4
| 3 min read
Whenever you play back the recorded test cases in Selenium, the http secured websites will displayed an authentication popup window and it prompt you to enter the http user name and the password and it will not allow to perform any further operations until you provide username and password. Lets checkout the solution.
Selenium Logo
| 2 min read
Selenium is a free and open-source automated software testing tool for testing web applications. Selenium is a set of tools that helps testers automate web-based applications more efficiently. The main advantage of selenium is that it will operate across different browsers and operating systems.
Zyxware default image4
| 2 min read
Suppose you have a site to test which has the following functionality. There is a text field and an editor. When we enter text on the text field, immediately it should be displayed on the editor. To be more clear, after entering the text on the field then focusing out from it, the values should be displayed in the CK editor. And our intention is to automate it using Selenium. Lets check how this can be automated.
Zyxware default image4
| 2 min read
Creating basic page is a general test must be done for all Drupal sites. And you are decided to do this through automated tool Selenium.The problem we face here is that you can't test inserting contents in the CK Editor by record and play. You have to insert Selenium commands for adding contents in the CK editor. Lets see how this can be handled.
Zyxware default image2
| 2 min read
In websites response time play a very important roles. Capturing this time is a difficult task. We can perform this by selenium Framework and by using the below script we can calculate the response time. The main aim of the script is to find time taken for JavaScript code execution, elements loading, page load etc. In this code we can calculate the time span between two events in different case.