1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
- const isAndroid = platformInfo.startsWith('android')
- const isIOS = platformInfo.startsWith('ios')
- const isHarmony = platformInfo.startsWith('harmony')
- const isApp = isAndroid || isIOS || isHarmony
- const isWeb = platformInfo.startsWith('web')
- describe('API-toast', () => {
- let page;
- const screeShotParams = {
- deviceShot: true,
- fullPage: true
- }
- beforeAll(async () => {
- page = await program.reLaunch('/pages/API/show-toast/show-toast')
- await page.waitFor("view");
- if (isApp) {
- const windowInfo = await program.callUniMethod('getWindowInfo');
- // android 端 app-webview 时顶部安全区高度为0,所以统一设置为60
- const topSafeArea = windowInfo.safeAreaInsets.top;
- screeShotParams.area = {
- x: 0,
- y: topSafeArea + 44
- }
- }
- });
- async function toScreenshot(imgName) {
- const image = await program.screenshot(screeShotParams);
- expect(image).toSaveImageSnapshot({customSnapshotIdentifier() {
- return imgName
- }})
- await page.waitFor(500);
- }
- it("onload-toast-test", async () => {
- await toScreenshot('toast-onload')
- })
- it("icon-toast-test", async () => {
- const icons = await page.$$('.radio-icon')
- for (let i = 0; i < icons.length; i++) {
- await icons[i].tap()
- const iconText = await icons[i].text()
- await page.callMethod('toast1Tap')
- await page.waitFor(100);
- await toScreenshot(`${iconText}-toast`)
- }
- })
- it("icon=none-mask=true-toast-test", async () => {
- await page.setData({maskSelect: true})
- await page.callMethod('toast3Tap')
- await page.waitFor(300);
- await toScreenshot('icon=none-mask=true-toast-image')
- })
- it("image-toast-test", async () => {
- await page.setData({imageSelect: true})
- await page.waitFor(300);
- await page.callMethod('toast1Tap')
- await page.waitFor(300);
- await toScreenshot('toast-image')
- })
- it("duration-toast-test", async () => {
- await page.setData({intervalSelect: 4000})
- await page.callMethod('toast1Tap')
- await page.waitFor(2000);
- await toScreenshot('toast-duration-2000')
- await page.waitFor(1000);
- await page.callMethod('hideToast')
- await page.waitFor(300);
- await toScreenshot('toast-duration-end')
- })
- if(isWeb){
- return
- }
- it("position-toast-test", async () => {
- const positions = await page.$$('.radio-position')
- for (let i = 0; i < positions.length; i++) {
- await positions[i].tap()
- const positionsText = await positions[i].attribute('value')
- await page.callMethod('toast2Tap')
- await page.waitFor(100);
- await toScreenshot(`toast-position-${positionsText}`)
- }
- })
- });
|