Writing Tests
Each test will have an Appetize session for you to interact with your device (like a page in Playwright). You can then assert the app based on some criteria, such as the existence of a UI element, a network request, or do a screenshot test.
Take a look at the following test example:
import { test, expect } from '@appetize/playwright'
// reinstall app after each test to reset data
test.afterEach(async ({ session }) => {
await session.reinstallApp()
})
test('logs in to the app', async ({ session }) => {
// type username
await session.tap({
element: {
attributes: {
accessibilityIdentifier: 'username_field'
}
}
})
await session.type({ value: 'jordan' })
// type password
await session.tap({
element: {
attributes: {
accessibilityIdentifier: 'password_field'
}
}
})
await session.type({ value: 'secretpassword' })
// tap login button
await session.tap({
element: {
attributes: {
text: 'Login'
}
}
})
// assert that an element with 'Hello Jordan' exists on the screen
await expect(session).toHaveElement({
attributes: {
text: 'Hello Jordan'
}
})
})
This will load a hypothetical app with a login screen. It will tap on the username and password fields, type some credentials, log in, and assert that a UI element with text "Hello Jordan" exists.
Each test provides the
session
for your app. You can use Automation actions here to interact with it as you need.test('scrolls through the news feed', async ({ session }) => {
await session.swipe({
position: {
x: '50%',
y: '50%',
},
gesture: 'up'
})
})
All actions are promises that will await until the interaction has been played on the device. If your action targets an element, Appetize will wait for the element to appear before proceeding, which is helpful when your action results in a change in UI.
test('navigates to a settings menu', async ({ session }) => {
await session.tap({
element: {
attributes: {
text: 'Settings'
}
}
})
await session.tap({
element: {
attributes: {
text: 'Notifications'
}
}
})
})
All actions that target an element will wait up to 10 seconds for an element to appear. If you need to wait for an element to appear without interacting on it, you can use waitForElement()
test('screenshot of the settings page', async ({ session }) => {
// tapping on 'Settings' will trigger a screen transition
await session.tap({ element: { text: 'Settings' } })
// wait for a UI element to appear
await session.waitForElement({ text: 'Notifications' })
// take a screenshot
const screenshot = await session.screenshot()
expect(screenshot.data).toMatchSnapshot()
})
Playwright uses the expect library for assertions. We have added custom async matchers for asserting on application state.
Asserts that an element exists in the current application UI
await expect(session).toHaveElement({
attributes: {
text: 'Hello'
}
})
It can take additional options to change the behaviour of the assertion:
await expect(session).toHaveElement(
{
attributes: {
text: 'Hello',
}
},
{
timeout: 10000, // time in ms to wait for element to appear (default 10000)
matches: 1 // require this amount of elements to be found
}
)
If you want to assert that an element does not exist:
await expect(session).not.toHaveElement({
text: 'Hello',
})
toMatchSnapshot() works with session.screenshot(), allowing you to do screenshot comparisons of your app.
Note: screenshot tests are fragile by nature as any change in the UI could cause it to fail. It is always better to assert on a narrow piece of application state, such as toHaveElement, or on network/debug log output.
test('loads the home tab', async ({ sesssion }) => {
await session.findElement({ attributes: { text: 'Home' } })
const screenshot = await session.screenshot()
await expect(session.data).toMatchSnapshot()
})
An example of how you can assert that a network request was made.
test.use({
config: {
proxy: 'intercept',
}
})
test('makes a network request to the API with authentication', async ({ session }) => {
const { request } = await session.waitForEvent('network', event => {
if (event.request.url.startsWith('https://api.example.com')) {
return true;
}
})
// request.headers is an array of objects
expect(request.headers).toContainEqual({
name: 'Authorization',
value: expect.stringMatching(/^Basic /),
})
})
session
contains a few helper methods for writing tests that may come in handyWaits for an element to appear.
await session.waitForElement({ attributes: { text: "Hello" } })
await session.waitForElement(
{ attributes: { text: "Hello" } },
{
matches: 2, // wait for exactly 2 elements to match the selector
timeout: 10000 // wait a maximum of 10 seconds (default)
}
)
Waits for an event to occur
const networkEvent = await session.waitForEvent('network')
const requestEvent = await session.waitForEvent('network', event => {
// resolves only when this condition is met
return event.type === 'request'
})
Waits for the given time to elapse (in ms)
await session.waitForTimeout(5000)
Last modified 4mo ago