Common testing scenarios
Test mobile apps with Appetize and Playwright. This guide covers common scenarios like biometric validation, network request interception, and deep link testing, as well as working with hardware featu
Overview
Scenarios
Change location and language
import { test } from '@appetize/playwright';
const madridLocation = [40.451975, -3.688530] // Latitude, longitude
const language = 'en_US'
// Set all test cases in this scope to mock the location to be in Madrid
test.use({
config: {
location: madridLocation,
language,
},
});Clear the application state between tests
Test Deep Links inside the application
Analytics tests
Validate biometric user journey
UI Branded Components Comparison
Last updated