Eva Ferreira
- Total activity 382
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 193
Articles
Recent activity by Eva Ferreira-
Flow data-driven variables
To pass data into a flow, we recommend using flow parameters because they give you more control over every flow instance and prevent unintentional updates. However, if you don’t use flow parameters...
-
Assertions in the mabl Trainer
Assertions are a fundamental component of testing; they help answer the question, "Is my application behaving as expected?" At a high level, a browser or mobile test consists of the following: An...
-
When to use CSS selectors vs. XPath expressions
When creating a custom find step, you might be wondering if it's advantageous to use CSS selectors or XPath expressions for element selection. While both are powerful tools used to access web eleme...
-
How auto-heal works
You are probably testing software that changes on a regular basis. Some changes are major and require old tests to be rewritten. But many changes, such as relabeling a button or layout adjustments,...
-
Variables in API tests
With variables, you can assert on dynamic values, compare values from one response to another, generate random values, do data-driven testing, and handle other scenarios that require working with d...
-
Logging into your app
Many testing scenarios require logging into an application before validating its functionality. In mabl, you can automate logins by recording steps in the Trainer. When these tests run in the clou...
-
Testing in the shadow DOM
In web apps, a shadow DOM creates a hidden DOM tree of elements that is attached to an element in the main DOM tree. Developers use shadow DOMs as a way to isolate web components, making them easie...
-
mabl credentials
In mabl, you can create a special credential variable type to use for authentication scenarios in your tests. mabl credentials are encrypted with a customer-specific encryption key before getting a...
-
Reviewing auto-heals
As your web application changes, mabl uses auto-heal to keep your tests up to date. When a step auto-heals in a passing test in a plan run, mabl generates auto-heal insights.This article explains h...
-
Best practices for assertions
Assertions are critical for building effective automated tests that yield meaningful results. If the goal of writing tests is to ensure that specific functionality works in a way that matches defi...