Testim Copilot is here | Learn More

Tag: Test automation

Welcome to a new era of user assistance! Our latest enhancement, the AI Help Assistant, is transformative for your Testim experience. You’ll find it in the bottom-right corner under the “Help” chat widget and it’s your gateway to a vast pool of knowledge. How it enhances product functionality Help Assistant is your ticket to our…

Here are 5️⃣ lessons I learned or relearned this year in testing: Test design techniques are a great way to find gaps AI in software testing is here to stay Selenium and Playwright are the most popular automation libraries Codeless and low-code tools are valuable The great divide between developers and testers Test design techniques…

What’s all the buzz about testing software with artificial intelligence (AI)? Let’s start with a basic definition–AI is the simulation of human intelligence in machines. It is composed of several computer science learning branches that focus on creating systems programmed to perform tasks that require advanced cognitive functions. Some of those functions include analyzing data,…

A mobile app evolves over time as its look and feel is regularly updated. A button may move to a different location, colors may be updated, and text may be changed. But that button being moved–is it the same button? This question is crucial when testing a mobile app, as the target elements (buttons, fields,…

Testing in production used to have a terrible reputation. And some (or most?) of it was probably deserved. But everything changes and the software industry is probably the fastest-changing “thing” ever. Nowadays, testing in production is not only tolerated but actively encouraged in many situations. However, a bad reputation isn’t an easy thing to shake…

Salesforce is a leading software company and one of organizations’ most popular cloud-based customer relationship management (CRM) systems. The platform offers numerous integration and customization possibilities. You can use it to design an ideal solution to help you grow your business. Although Salesforce’s flexibility is one of its key advantages, performing continuous testing, which is…

Mocha is a popular JavaScript test framework that’s often used for testing Node.js applications. It’s a widely used testing tool for both JavaScript and TypeScript projects. However, using Mocha with TypeScript is a little different than JavaScript because TypeScript is a typed superset of JavaScript and, thus, requires type definitions for many of its features….

You probably already have Jenkins running to automate the build process of your applications. However, you might be aware that to increase quality in your build process, you need to include testing. So, in this post, I’ll cover why automated testing is so crucial in continuous integration (CI) pipelines. Then, I’ll explain how to integrate…

Introduction The React testing library is a powerful library used for testing React components. The library helps generate mock events to simulate user input and helps query the DOM as a normal user would. It also provides functionalities such as finding form elements by their label text and links and buttons from their text. The…

The end goal of test automation is to ease the process of testing web pages. If test automation isn’t written in a well-structured manner, then the testing process becomes ambiguous and ineffective. In Selenium, Page Factory optimizes test instances created using the page object model (POM). The POM ensures that tests are written in a…