Author: Deepthi Radhakrishnan
Testcase preparation for set up UK subsidiary for webstore
Software Testing Tools
1. Sahi Sahi Pro is a test automation software for desktop applications, mobile applications, and web applications. Sahi was conceived as an open-source product in 2005 with a specific focus on test automation management tools for web 2.0 technologies but as a test automation tool geared towards testers. The open-source version includes basic tools set sufficient for most testing purposes (Record on all browsers, Playback on… Continue reading Software Testing Tools
How much do we know about selenium?
What is Selenium? Selenium is an open-source, automated testing tool used to test web applications across multiple browsers. It’s primarily built in Java and supports several browsers and programming languages. The Selenium test suite comprises of four tools: Selenium Integrated Development Environment (IDE) Selenium Remote Control (RC) Selenium WebDriver Selenium Grid Need for Selenium WebDriver To… Continue reading How much do we know about selenium?
Performance Testing Tools
LoadNinja : 1)LoadNinja by SmartBear allows you to quickly create scriptless sophisticated load tests, reduce testing time by 50%, replace load emulators with real browsers, and get actionable, browser-based metrics, all at ninja speed. 2)You can easily capture client-side interactions, debug in real-time, and identify performance problems immediately. 3)LoadNinja empowers teams to increase their test coverage… Continue reading Performance Testing Tools
Introduction to Postman
Postman is a standalone software testing API (Application Programming Interface) platform to build, test, design, modify, and document APIs. It is a simple Graphic User Interface for sending and viewing HTTP requests and responses. While using Postman, for testing purposes, one doesn’t need to write any HTTP client network code. Instead, we build test suites… Continue reading Introduction to Postman
Software Testing Tool- QTP
What is QTP? QTP stands for QuickTest Professional. It helps in executing the automated functional testing which is helpful for the tester to identify any error, defects, or bugs. It was designed and developed by Mercury Interactive, then powered by HP and now it is under MicroFocus. Features of QTP: It is more of an… Continue reading Software Testing Tool- QTP
BASICS OF REST API
What is a REST API? An API, or application programming interface, is a set of rules that define how applications or devices can connect to and communicate with each other. A REST API is an API that conforms to the design principles of the REST, or representational state transfer architectural style. For this reason, REST APIs are sometimes… Continue reading BASICS OF REST API
How to automate the captcha
Here is the stepwise working solution Step1- Add dependency for net.sourceforge.tess4j Step2- Download and keep “eng.traineddata” file in your project directory Step3- //Create one folder to store captcha image and assign that path to Variable Stringpath_stud_captcha=”C:/Users/shrad/.eclipse/Cucumber/src/test/resources/captcha_images/c ap.png”; //Inspect and store captcha element WebElement wb_stud=driver.findElement(By.xpath(“//div[@class=’style_captchaContainer LdFYB’]”)); //Give some wait Thread.sleep(3000); //Get screenshot of captcha element File… Continue reading How to automate the captcha