Stop PowerShell beep in Windows 10

The beep in PowerShell is pretty annoying. It can be turned off with a simple set of commands. Steps: Open PowerShell with Admin permissions Enter the following into the console and press enter: Similar Posts from the author: Test complete – first impressions Trello + Zapier + Cloud – Ultimate tool to organize your life […]

Read more
Running webdriver code in JMeter

With the improvements in technology more and more of the business logic gets executed on the client side and it’s not easy to get a clear picture of the perceivable performance by using pure JMeter tests only. To extend these measurements JMeter-Webdriver plugin in JMeter can be handy to run WebDriver tests using actual browsers […]

Read more
Running simple Ant builds via Jenkins

I assume that a Jenkins is already installed and running on your system. the first step is to open Jenkins in your web browser a If you didn’t changed the default settings you can reach Jenkins on http://localhost:8080/ After you login to Jenkins the following screen should appear: Set up ant in Jenkins in Manage […]

Read more
Jenkins setup and basic security settings

You have to download a platform-specific installer from Jenkins site: https://jenkins-ci.org/ The installation should be easy, if you have any issues with it you can find additional information on the site https://wiki.jenkins-ci.org/display/JENKINS/Containers After the installation in windows you should restart your machine, Jenkins will start up with windows. To check if it running you have […]

Read more
Create an Ant build for TestNG tests

The goal of this exercise is to run TestNG tests through Apache Ant. First you have to have a sample TestNg project at your hand. If you don’t have any, you can create the sample using the instructions below, or you can download it from using the link from the bottom of the post. Create […]

Read more
Wedbriver wait for ajax to finish and JQuery animation

JQuery’s ajax calls can make an automated tester’s life miserable if you don’t know how to handle them. The quickest way to handle all of the Jquery ajax calls is to wait for the jQuery.active property to be null. We can easily construct a sample code trough the JavasscriptExecutor class.It sends out JavaScript code which […]

Read more