12 lines
514 B
Plaintext
12 lines
514 B
Plaintext
|
|
import { expect, $ } from '@wdio/globals'
|
||
|
|
|
||
|
|
describe('MacOS Testing', () => {
|
||
|
|
it('should calculate the meaning of life', async function () {
|
||
|
|
await $('//XCUIElementTypeButton[@label="seven"]').click()
|
||
|
|
await $('//XCUIElementTypeButton[@label="multiply"]').click()
|
||
|
|
await $('//XCUIElementTypeButton[@label="six"]').click()
|
||
|
|
await $('//XCUIElementTypeButton[@title="="]').click()
|
||
|
|
await expect($('//XCUIElementTypeStaticText[@label="main display"]')).toHaveText('42')
|
||
|
|
})
|
||
|
|
})
|