Java/JVMMobile Automation TestingTesting

Automated Software Testing with Puppeteer & amp; Jest

WHAT IS PUPPETEER? Puppeteer is a Node.js library developed by Google that lets you control headless Chrome through the DevTools Protocol. It is a tool for automating testing in your application using headless Chrome or Chromebit devices without requiring browser extensions like Selenium Webdriver or PhantomJS. WHAT IS JEST? Jest is a delightful JavaScript Testing […]

Manual TestingTesting

Everything you should know about eCommerce Testing

In today’s world, I bet you won’t find anyone who hasn’t shopped online. E-commerce website testing checks for any issues before you publish your website or web application to the public. Web applications require testing various features such as security, functionality, and databases. The main reason to thoroughly test your e-commerce website is to improve […]

Ansha
Ansha
Read

AndroidMobilityTesting

Instrumental Testing on MLKit (integration test)

Introduction Instrumented tests run on Android devices, whether physical or emulated. As such, they can take advantage of the Android framework APIs. Instrumented tests, therefore, provide more fidelity than local tests, though they run much more slowly. * Image from https://developer.android.com/training/testing/fundamentals Set up your testing environment In your app’s top-level build.gradle file, you need to specify […]

Janmejay Singh
Janmejay Singh
Read

Testing

Security Testing

You won’t ever want to implement software that frustrates your customers and has issues every two weeks. Prior to deploying software at the client’s location, security testing is an essential step. What is Security Testing? Software testing, which is done to find a software application’s flaws and vulnerabilities, includes security testing as a crucial component. […]

Ansha
Ansha
Read

AnayticsApplication SecurityAutomation Testing

Kibana Tool

Kibana Tool Kibana is a dashboarding tool that works veritably nearly with Elasticsearch.  Kibana is used for various use cases, like system monitoring & application observations. In a traditional monitoring system, we will monitor system performance, application logs, and so on. Kibana core ships with the classics: histograms, line graphs, pie charts, sunbursts, and more. […]

Testing

Understanding the Selenium Grid 4

Selenium Grid is an open-source tool to automate web browsers. It allows us to achieve parallel execution of tests on different machines with the benefit of executing the same test suite on all the machines simultaneously. The aim is to make testing more efficient and decrease the test execution time. It also aids in lessening […]

Sriyansh Jain
Sriyansh Jain
Read

Java/JVMSoftware developmentTesting

Unit Testing using JUnit and Mockito

Introduction to Unit testing What is Unit testing? Unit testing is a process that is used to verify a unit or unit’s functionality. This step helps in the estimation of the codes by other team members and also creates a record of all necessary information including errors that occur. It provides an opportunity for the […]

Ajay Kumar
Ajay Kumar
Read

Testing

Best Practices For Writing Test Cases

What is a Test Case?   Test cases are specific set of conditions that are performed on the software application to achieve a determined output and to verify the functionality of the feature. Test cases guide the testers through the sequence of steps to validate whether the software application is free of bugs, and it is […]

Madhuri A
Madhuri A
Read

Testing

Automating the API testing using Rest Assured

In any project, we have a large number of APIs, and if we only stick to manual testing, then it will take a lot of time and resource consumption; managing this situation is also very challenging in this recurring release trend in the industry. To overcome this, it is good to start the API Automation […]