const PAGE_PATH = '/pages/API/get-current-pages/set-page-style-disable-pull-down-refresh' describe('getCurrentPages', () => { let page it('page-style', async () => { page = await program.navigateTo(PAGE_PATH) await page.callMethod('getPageStyle') await page.waitFor(200) const isEnablePullDownRefresh1 = (await page.data()).currentPageStyle.enablePullDownRefresh expect(isEnablePullDownRefresh1).toBe(false) await page.callMethod('setPageStyle', true) await page.waitFor(200) await page.callMethod('getPageStyle') await page.waitFor(200) const isEnablePullDownRefresh2 = (await page.data()).currentPageStyle.enablePullDownRefresh expect(isEnablePullDownRefresh2).toBe(true) await page.callMethod('startPullDownRefresh') await page.waitFor(500) const image3 = await program.screenshot({fullPage: true}); expect(image3).toSaveImageSnapshot(); await page.waitFor(3500) // setPageStyle await page.callMethod('setPageStyle', false) await page.waitFor(200) await page.callMethod('startPullDownRefresh') await page.waitFor(500) const image2 = await program.screenshot({fullPage: true}); expect(image2).toSaveImageSnapshot(); }) })