Test Configuration
Run your tests against multiple device configurations
Changing configuration
import { test, expect } from '@appetize/playwright'
test.use({
config: {
publicKey: '<buildId|publicKey>'
device: 'nexus5'
},
});
test('app works on nexus5', async ({ session }) => {
...
})Getting configuration
Projects
Examples
Test Android and iOS apps
Test iOS app against multiple iOS Versions
Test Android against multiple devices
During tests
Last updated