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
Test Frameworks to work with inside NodeJS

Testing with NodeJS requires some test framework to work with inside NodeJS. Our list would be something like this: Mocha Jasmine QUnit Express (no longer supported) jsUnit some other tools Lets focus on the first three now in this section, they are the most widely used, with some pros and cons. Starting wit the oldest, […]

Read more