提交 0e403875 编写于 作者: Anne_LXM's avatar Anne_LXM

test(scroll-view-refresher.test.js):调整测试例

上级 a45111aa
...@@ -40,7 +40,8 @@ describe('component-native-scroll-view-refresher', () => { ...@@ -40,7 +40,8 @@ describe('component-native-scroll-view-refresher', () => {
expect(await page.data('onRefresherrestoreTest')).toBe('refresherrestore:Success') expect(await page.data('onRefresherrestoreTest')).toBe('refresherrestore:Success')
}); });
// 仅App端支持手势下拉刷新,在不同设备上位置有差异可能导致不触发中止事件,安卓端仅测android 10.0.0_x86 // 仅App端支持手势下拉刷新,在不同设备上位置有差异可能导致不触发中止事件
// 安卓端仅测'android 11.0.0'、'android 10.0.0_x86_64'、'android 10.0.0_x86'
if(!platformInfo.startsWith('web')){ if(!platformInfo.startsWith('web')){
it('check_refresherabort', async () => { it('check_refresherabort', async () => {
if(isIos){ if(isIos){
...@@ -50,25 +51,16 @@ describe('component-native-scroll-view-refresher', () => { ...@@ -50,25 +51,16 @@ describe('component-native-scroll-view-refresher', () => {
duration: 1000 duration: 1000
}) })
}else if(isAndroid){ }else if(isAndroid){
if(platformInfo.indexOf('12') != -1){ await program.swipe({
await program.swipe({ startPoint: {x: 100,y: 400},
startPoint: {x: 100,y: 600}, endPoint: {x: 100,y: 500},
endPoint: {x: 100,y: 730}, duration: 1000
duration: 100 })
})
}else{
await program.swipe({
startPoint: {x: 100,y: 400},
endPoint: {x: 100,y: 500},
duration: 100
})
}
} }
await page.waitFor(1500) await page.waitFor(1500)
console.log('onRefresherpullingTest',await page.data('onRefresherpullingTest')) console.log('onRefresherpullingTest',await page.data('onRefresherpullingTest'))
console.log(platformInfo,'onRefresherabortTest',await page.data('onRefresherabortTest')) console.log(platformInfo,'onRefresherabortTest',await page.data('onRefresherabortTest'))
// 下拉刷新被中止,在iOS不触发@refresherabort事件 if(isIos || platformInfo.startsWith('android 10') || platformInfo.startsWith('android 11')){
if(platformInfo.startsWith('android 10.0.0_x86') || isIos){
expect(await page.data('onRefresherabortTest')).toBe('refresherabort:Success') expect(await page.data('onRefresherabortTest')).toBe('refresherabort:Success')
} }
}); });
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册