input.test.js 5.5 KB
Newer Older
张磊 已提交
1 2 3 4 5 6 7 8 9 10
// uni-app自动化测试教程: uni-app自动化测试教程: https://uniapp.dcloud.net.cn/worktile/auto/hbuilderx-extension/

describe('component-native-input', () => {

  let page;
  beforeAll(async () => {
    page = await program.reLaunch('/pages/component/input/input')
    await page.waitFor(3000);
  });

11 12 13 14 15 16
  // it("beforeAllTestScreenshot", async () => {
  //   const image = await program.screenshot({
  //     fullPage: true
  //   })
  //   expect(image).toMatchImageSnapshot()
  // })
张磊 已提交
17
  // 测试焦点及键盘弹起
18
  it('focus', async () => {
19
    const input = await page.$('#uni-input-focus');
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    expect(await input.property('focus')).toBe("true")
    // expect(await page.data("inputFocusKeyBoardChangeValue")).toBe(true)
    await page.setData({
      focus: false,
    })
    expect(await input.property('focus')).toBe("false")
    // await page.waitFor(1000)
    // expect(await page.data("inputFocusKeyBoardChangeValue")).toBe(false)
    // await page.setData({
    //   focus: true,
    // })
    // expect(await input.property('focus')).toBe(true)
    // await page.waitFor(1000)
    // expect(await page.data("inputFocusKeyBoardChangeValue")).toBe(true)
    // await page.setData({
    //   focus: false,
    // })
    // expect(await input.property('focus')).toBe(false)
    // await page.waitFor(1000)
    // expect(await page.data("inputFocusKeyBoardChangeValue")).toBe(false)
    // await page.waitFor(1000)
  });
张磊 已提交
42 43 44

  // 测试修改value属性
  it("value", async () => {
45
    const input = await page.$('#uni-input-default');
张磊 已提交
46 47 48 49 50
    expect(await input.property('value')).toEqual("hello uni-app x")
  })

  //测试input的类型
  it("type", async () => {
51 52 53 54
    const text = await page.$('#uni-input-type-text');
    const number = await page.$('#uni-input-type-number');
    const digit = await page.$('#uni-input-type-digit');
    const tel = await page.$('#uni-input-type-tel');
张磊 已提交
55 56 57 58 59 60 61
    expect(await text.property('type')).toEqual("text")
    expect(await number.property('type')).toEqual("number")
    expect(await digit.property('type')).toEqual("digit")
    expect(await tel.property('type')).toEqual("tel")
  })

  //  测试密码属性
62 63 64 65 66 67 68 69 70 71 72 73 74
  // it("password", async () => {
  //   const input = await page.$('.uni-input-password');
  //   expect(await input.property('password')).toBe(true)
  //   await page.setData({
  //     inputPassword: false,
  //     inputPasswordValue: "inputPasswordValue"
  //   })
  //   expect(await input.property('password')).toBe(false)
  //   await page.waitFor(500)
  //   await page.setData({
  //     inputPassword: true
  //   })
  // })
张磊 已提交
75
  // 测试placeholder
76 77 78 79 80 81 82 83 84 85 86 87
  // it("placeholder", async () => {
  //   const placeholder1 = await page.$('.uni-input-placeholder1');
  //   expect(await placeholder1.property("placeholder-style")).toMatchObject({
  //     "color": "red"
  //   })
  //   expect(await placeholder1.property("placeholder")).toEqual("占位符文字颜色为红色")
  //   await page.setData({
  //     inputPlaceHolderStyle: "color:#CC00CC",
  //   })
  //   expect(await placeholder1.property("placeholder-style")).toMatchObject({
  //     "color": "#CC00CC"
  //   })
张磊 已提交
88

89 90 91 92 93 94 95
  //   await page.setData({
  //     inputPlaceHolderStyle: "color:#CC19CC;background-color:#00b1c0",
  //   })
  //   expect(await placeholder1.property("placeholder-style")).toMatchObject({
  //     "color": "#CC19CC",
  //     "backgroundColor": "#00b1c0"
  //   })
张磊 已提交
96

97 98 99 100 101 102 103 104 105 106
  //   await page.setData({
  //     inputPlaceHolderStyle: "color:#CC19CC;background-color:#00b1c0;text-align:center;font-size:44px;font-weight:900",
  //   })
  //   expect(await placeholder1.property("placeholder-style")).toEqual({
  //     "backgroundColor": "#00b1c0",
  //     "color": "#CC19CC",
  //     "fontSize": "44px",
  //     "fontWeight": "900",
  //     "textAlign": "center"
  //   })
张磊 已提交
107

108 109 110 111 112 113 114 115 116 117 118 119
  //   const placeholder2 = await page.$('.uni-input-placeholder2');
  //   expect(await placeholder2.property("placeholder-class")).toMatchObject({
  //     "backgroundColor": "#008000"
  //   })
  //   await page.setData({
  //     inputPlaceHolderClass: "uni-input-placeholder-class-ts",
  //   })
  //   expect(await placeholder2.property("placeholder-class")).toMatchObject({
  //     "backgroundColor": "#FFA500"
  //   })
  //   expect(await placeholder2.property("placeholder")).toEqual("占位符背景色为绿色")
  // })
张磊 已提交
120 121

  it("disable", async () => {
122
    const input = await page.$('#uni-input-disable');
123
    expect(await input.property("disabled")).toBe("true")
张磊 已提交
124 125 126
  })

  it("confirm-type", async () => {
127 128 129 130 131
    expect(await (await page.$('#uni-input-confirm-send')).property("confirmType")).toEqual("send")
    expect(await (await page.$('#uni-input-confirm-search')).property("confirmType")).toEqual("search")
    expect(await (await page.$('#uni-input-confirm-next')).property("confirmType")).toEqual("next")
    expect(await (await page.$('#uni-input-confirm-go')).property("confirmType")).toEqual("go")
    expect(await (await page.$('#uni-input-confirm-done')).property("confirmType")).toEqual("done")
张磊 已提交
132
  })
张磊 已提交
133

134 135 136 137 138 139 140
  // it("maxlength", async () => {
  //   const input = await page.$('.uni-input-maxlength');
  //   await page.setData({
  //     inputMaxLengthValue: "uni-input-maxlength"
  //   })
  //   await page.waitFor(500)
  // })
张磊 已提交
141

142 143 144 145 146
  it("cursor-color", async () => {
    await page.setData({
      cursor_color: "transparent",
    })
    await page.waitFor(500)
147
    expect(await (await page.$('#uni-input-cursor-color')).property("cursor-color")).toBe("transparent")
148 149
  })

150 151 152 153 154 155
  it("afterAllTestScreenshot", async () => {
    const image = await program.screenshot({
      fullPage: true
    })
    expect(image).toMatchImageSnapshot()
  })
张磊 已提交
156
});