提交 584375d8 编写于 作者: 雪洛's avatar 雪洛

test: input自动化测试使用value方法替代property方法

上级 caebcfc3
......@@ -156,7 +156,7 @@ describe('component-native-input', () => {
await page.setData({
inputMaxLengthValue: str
})
let length = (await input.property("value")).length
let length = (await input.value()).length
expect(length).toBe(10)
await page.setData({
inputMaxLengthValue: ""
......@@ -165,7 +165,7 @@ describe('component-native-input', () => {
it("password and value order", async () => {
const input = await page.$('#uni-input-password');
let length = (await input.property("value")).length
let length = (await input.value()).length
expect(length).toBe(6)
await page.setData({
inputPasswordValue: ""
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册