There are many challenges a QA tester faces while planning the testing strategy for mobile banking application. I have listed some of the most important challenges that needs to be addressed in order to have an effective test strategy for such mobile...
Security Testing - Types
Filed Under:
Articles,
Guidelines,
Security Testing,
Test Types,
Web Testing
Liquidator

Thinking about the different types of Security testings that we can do and also classifying them into the right buckets is very important.To summarise them
Black box Testing ( Pen Testing)
Little or no information is provided about the target
Testing...
CasperJS + PhantomJS on Mac - First Test
Filed Under:
Automation,
Code Snippet,
GUI Testing,
Java Script,
Techniques,
Web Testing
Liquidator

1. Installation of CasperJS : open the Terminal and fire up these commands
$ brew update
$ brew install casperjs --devel
To test if the installation of casperjs was successful, type on terminal
$ which casperjs
you should get - /usr/local/bin/casperjs...
Data driven tests using Xunit, Excel & Selenium
Filed Under:
Automation,
Code Snippet,
Deliverables,
Framework,
General,
GUI Testing,
Selenium,
Tips,
Unit Testing
Liquidator

So, what is xUnit.net? xUnit.net is a unit testing tool for the .NET framework. For example, C# and VB.net. It was created by the original inventor of the NUnit testing framework and seeks to address some of the shortcomings of the NUnit framework in...
Cross Browser Playback in CodedUI
Filed Under:
Automation,
Code Snippet,
CodedUI,
Framework,
GUI Testing,
Techniques,
Tips,
Tool,
Web Testing
Liquidator

In effect , Cross Browser Playback is only useful to actually check UI differences between the different browsers. So the popular belief of replaying all the tests for testing the cross browser is just a myth. To improve your effectiveness, you may want...
Data Driven tests in Coded UI using MSTest
Filed Under:
Automation,
Code Snippet,
Framework,
GUI Testing,
Tips
Liquidator

Microsoft MSTest supports data driven tests where you can specify a data source and the test method will be executed for each row in the set , either in Sequential or Random mode based on your choice and need. Since CodedUI is based on MSTest, we can...