ucenter.test.js 1.6 KB
Newer Older
study夏羽's avatar
study夏羽 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
describe('pages/ucenter/ucenter.vue', () => {

	let page
	beforeAll(async () => {
		page = await program.switchTab('/pages/ucenter/ucenter')
		await page.waitFor(300)
	})

	it('宫格', async () => {
		const getGrid = await page.data('gridList')
		// console.log("getGrid: ",getGrid);
		expect(getGrid.length).toBe(4)
	})

	it('列表', async () => {
		const getUcenterList = await page.data('ucenterList')
		// console.log("getUcenterList: ",getUcenterList);
		expect(getUcenterList.length).toBe(3)
	})
study夏羽's avatar
study夏羽 已提交
20 21 22 23 24 25 26 27
	

	it('普通签到', async () => {

		
		if (process.env.UNI_PLATFORM === "h5" || process.env.UNI_PLATFORM === "mp-weixin") {
			await page.callMethod('signIn')
			await page.waitFor(300)
study夏羽's avatar
update  
study夏羽 已提交
28
			await program.screenshot({
study夏羽's avatar
study夏羽 已提交
29 30 31 32 33 34 35 36 37 38 39 40
				path: "static/screenshot/sign-h5.png" // 默认项目根目录 process.env.UNI_PLATFORM === "h5" || 
			})
		}
		
		
		if (process.env.UNI_PLATFORM === "app-plus") {
			const signInByAdRes = await page.callMethod('signInByAd')
			
			await page.waitFor(300)
			const shareRes = await page.callMethod('share')
			await page.waitFor(300)
			
study夏羽's avatar
update  
study夏羽 已提交
41
			await program.screenshot({
study夏羽's avatar
study夏羽 已提交
42 43 44 45 46
				path: "static/screenshot/sign-app.png" // 默认项目根目录 process.env.UNI_PLATFORM === "h5" || 
			})
			
		}
	})
study夏羽's avatar
study夏羽 已提交
47 48 49

	it('我的积分', async () => {
		// expect.assertions(1);
study夏羽's avatar
study夏羽 已提交
50
		await page.waitFor(300)
study夏羽's avatar
study夏羽 已提交
51

study夏羽's avatar
study夏羽 已提交
52 53
		const getScoreRes = await page.callMethod('getScore')
		console.log("getScoreRes: ", getScoreRes);
study夏羽's avatar
study夏羽 已提交
54 55 56 57 58 59 60
		if (getScoreRes) {
			console.log("今日已签到");
			expect(getScoreRes.score).not.toBeUndefined();
			expect(getScoreRes.balance).toBeGreaterThanOrEqual(getScoreRes.score);
		} else {
			console.log("签到失败");
		}
study夏羽's avatar
study夏羽 已提交
61 62 63 64
	})


})