slider-maxValue.test.js 1.1 KB
Newer Older
1 2 3 4 5
const PAGE_PATH = '/pages/component/slider/slider-maxValue'

describe('touch-events-test', () => {

  // 先屏蔽 android 及 web 平台
雪洛's avatar
雪洛 已提交
6 7 8 9 10
  if (
    process.env.uniTestPlatformInfo.startsWith('android') ||
    process.env.uniTestPlatformInfo.startsWith('web') ||
    process.env.uniTestPlatformInfo.startsWith('mp')
  ) {
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
    it('other platform', () => {
      expect(1).toBe(1)
    })
    return
  }

  if (process.env.UNI_TEST_DEVICES_DIRECTION == 'landscape') {
    it('跳过横屏模式', () => {
      expect(1).toBe(1)
    })
    return
  }

  let page
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor(500);
  })


  it('test-slider-max-value', async () => {

    let iconRect = await page.data('sliderRect')
34
    let x = iconRect.x + 25
35 36 37 38 39 40 41 42 43 44 45 46 47 48
    let y = iconRect.y + 15

    // 滑动事件
    await program.swipe({
      startPoint: {x: x, y: y},
      endPoint: {x: x+1000,y: y},
      duration: 300
    })

    await page.waitFor(600);
    const ret = await page.data('sliderValue')
    expect(ret).toBe(10)
  })
})