Automation TestingTesting

Convention of Selenium Script

Like developers write code to implement a functionality, testers write scripts to test it. Similarly, testers also have to be careful in writing these scripts to maintain the standard of the code. Often it happens that a script running for the first time does not run the second time or shows failed test cases in […]

Automation TestingTechnology

Integration of Sikuli with Selenium WebDriver

Sikuli is an image-based open source tool to automate the GUI and can be used on any platform like Windows/Linux/Mac/Mobile. Sikuli uses a technique called image recognition to identify and control GUI components. At times when to access a GUI object, there is no access to its internal or external code; Sikuli comes in handy. […]

AndroidAutomation TestingAWS

How to provide your TestsScripts & Dependencies to AWS Device Farm

If you are using Appium, TestNG & Maven test frameworks and Java language for your mobile automation project, then it’ll help you. To run your Appium Java TestNG scripts, you need to club your test-cases & all the dependencies in one file and provide it to Device Farm. And to attain this, do some modifications in the […]

Automation TestingTesting

Regression Testing: A Sign-Off Before Product Release

Let’s understand the term first What is Regression? Regress means returning to the former or less developed state.  Regression Testing involves a similar concept; it includes testing of previous functionality, to ensure a bug that could have been introduced by any enhancement added to the previous version. A test engineer checks the desired functionality and […]

Automation TestingManual TestingMobility

Jmeter with Mobile

Jmeter is known for Performance and Functional testing tools for Web, but Jmeter can also record scripts for Mobile Applications. You can record and play script from Jmeter and quickly verify Mobile application performance and functional aspects. Jmeter has features to prepare and run our mobile specific performance test scripts. We need to do configuration […]

AndroidAutomation TestingAWS

Android App Automation on Multiple Devices in parallel using AWS Device Farm

App Automation lets you ensure that you can run your test-suite repetitively, with minimal effort & check the results whether its meeting your functional requirements or not. After each build-release, you need to follow the same procedure. But the challenge is to cover variety of phones & tablets and it is really impossible to test […]

Automation TestingJava/JVMTesting

BrowserMob: Proxy for WebPage Load Testing Using Selenium

Every high-performance organization uses one or the other performance measures and, often, are involved in devising new techniques and tools to deliver efficient performance systems. These tools are used to collect performance data to analyse and forecast the behaviour of the system when it goes live, and to eliminate all the issues that are minimizing […]

Automation TestingManual TestingTechnology

Top 11 Best Practices in Software Testing

“To err is human” – Alexander Pope. Everyone makes mistakes, but you cannot ignore all mistakes. Some of them can prove to be very expensive. During testing of an application/product, a tester makes sure that mistakes done by developers are discovered and fixed before the product reaches the end user. The primary objective of testing […]

Automation TestingTechnologyTesting

Working with Array of Elements in Protractor

What is ElementArrayFinder? ElementArrayFinder is an array of WebElements which is used to set up a chain of conditions that identify an array of elements. This allows you to perform actions (i.e. click, getText) on them as you would on an array of WebElements. The action will apply to every element identified by the ElementArrayFinder. […]

Services