blob: df1c29238d040681d7d67586211354367a89df4a (
plain) (
tree)
|
|
async function browserSleep (amount: number) {
await browser.pause(amount)
}
function isMobileDevice () {
const platformName = (browser.capabilities['platformName'] || '').toLowerCase()
return platformName === 'android' || platformName === 'ios'
}
function isSafari () {
return browser.capabilities['browserName'] &&
browser.capabilities['browserName'].toLowerCase() === 'safari'
}
function isIOS () {
return isMobileDevice() && isSafari()
}
async function go (url: string) {
await browser.url(url)
// Hide notifications that could fail tests when hiding buttons
await browser.execute(() => {
const style = document.createElement('style')
style.innerHTML = 'p-toast { display: none }'
document.head.appendChild(style)
})
}
export {
isMobileDevice,
isSafari,
isIOS,
go,
browserSleep
}
|