The 2024 Enterprise Technology Leadership Summit in Las Vegas was a transformative experience for attendees, featuring insightful presentations and discussions on crucial topics in the DevOps landscape. With a focus on leveraging technology to drive business outcomes, the conference highlighted the importance of AI and machine learning in the software development life cycle. Networking opportunities…
Tag: Test automation
So far, we’ve talked about the history of mobile, and we’ve talked about today’s mobile testing tools and how we can develop applications with them. Now let’s talk about Tricentis Testim Mobile a bit more in-depth. Testim Mobile emerged from Tricentis’ acquisition of TestProject and Testim. TestProject was an open-source tool that helped people automate…
In Part 1 of this blog series, we talked about the history of mobile development. What’s next? Let’s dig into what happens when you automate mobile testing. Today, people understand that automated tests are the key to shipping your product with confidence. Think about how a bug could impact your business: When a bug is…
Introducing Tricentis Testim Copilot We are thrilled to announce the arrival of Tricentis Testim Copilot, the first of many Tricentis Copilot solutions. Tricentis Copilot solutions are a collection of advanced generative AI capabilities available as add-ons across our products that help customers boost their efficiency throughout the entire testing lifecycle. This innovative tool brings cutting-edge…
Mobile applications have become essential to our daily lives. We use them for everything – banking, shopping, booking travel, and even ordering food. With the surge in mobile app usage, user expectations have skyrocketed. We demand apps that are fast, reliable, and bug-free. This puts immense pressure on organizations to ensure their mobile apps deliver…
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…
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….
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…
Test automation makes verifying an application’s behavior more straightforward and consistent. Unlike manual testing, automated testing can test even the smallest unit, such as a single method, without running the entire app. Usually, to perform automated tests, you’ll need a testing library. Mocha is one such library. You can test one or more methods in your…