Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
3e119088
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
3e119088
编写于
12月 18, 2023
作者:
taohebin@dcloud.io
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: input示例 input组件增加id,并且测试使用id引用组件
上级
4e1497be
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
30 addition
and
30 deletion
+30
-30
pages/component/input/input.test.js
pages/component/input/input.test.js
+13
-13
pages/component/input/input.uvue
pages/component/input/input.uvue
+17
-17
未找到文件。
pages/component/input/input.test.js
浏览文件 @
3e119088
...
...
@@ -16,7 +16,7 @@ describe('component-native-input', () => {
// })
// 测试焦点及键盘弹起
it
(
'
focus
'
,
async
()
=>
{
const
input
=
await
page
.
$
(
'
.
uni-input-focus
'
);
const
input
=
await
page
.
$
(
'
#
uni-input-focus
'
);
expect
(
await
input
.
property
(
'
focus
'
)).
toBe
(
"
true
"
)
// expect(await page.data("inputFocusKeyBoardChangeValue")).toBe(true)
await
page
.
setData
({
...
...
@@ -42,16 +42,16 @@ describe('component-native-input', () => {
// 测试修改value属性
it
(
"
value
"
,
async
()
=>
{
const
input
=
await
page
.
$
(
'
.
uni-input-default
'
);
const
input
=
await
page
.
$
(
'
#
uni-input-default
'
);
expect
(
await
input
.
property
(
'
value
'
)).
toEqual
(
"
hello uni-app x
"
)
})
//测试input的类型
it
(
"
type
"
,
async
()
=>
{
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
'
);
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
'
);
expect
(
await
text
.
property
(
'
type
'
)).
toEqual
(
"
text
"
)
expect
(
await
number
.
property
(
'
type
'
)).
toEqual
(
"
number
"
)
expect
(
await
digit
.
property
(
'
type
'
)).
toEqual
(
"
digit
"
)
...
...
@@ -119,16 +119,16 @@ describe('component-native-input', () => {
// })
it
(
"
disable
"
,
async
()
=>
{
const
input
=
await
page
.
$
(
'
.
uni-input-disable
'
);
const
input
=
await
page
.
$
(
'
#
uni-input-disable
'
);
expect
(
await
input
.
property
(
"
disabled
"
)).
toBe
(
"
true
"
)
})
it
(
"
confirm-type
"
,
async
()
=>
{
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
"
)
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
"
)
})
// it("maxlength", async () => {
...
...
@@ -144,7 +144,7 @@ describe('component-native-input', () => {
cursor_color
:
"
transparent
"
,
})
await
page
.
waitFor
(
500
)
expect
(
await
(
await
page
.
$
(
'
.
uni-input-cursor-color
'
)).
property
(
"
cursor-color
"
)).
toBe
(
"
transparent
"
)
expect
(
await
(
await
page
.
$
(
'
#
uni-input-cursor-color
'
)).
property
(
"
cursor-color
"
)).
toBe
(
"
transparent
"
)
})
it
(
"
afterAllTestScreenshot
"
,
async
()
=>
{
...
...
pages/component/input/input.uvue
浏览文件 @
3e119088
...
...
@@ -9,7 +9,7 @@
<text class="uni-title-text">设置输入框的初始内容</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-defaul
t" value="hello uni-app x" />
<input
id="uni-input-default" class="uni-inpu
t" value="hello uni-app x" />
</view>
</view>
...
...
@@ -18,16 +18,16 @@
<text class="uni-title-text">type取值(不同输入法表现可能不一致)</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-type-tex
t" type="text" placeholder="文本输入键盘" />
<input
id="uni-input-type-text" class="uni-inpu
t" type="text" placeholder="文本输入键盘" />
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-type-number
" type="number" placeholder="数字输入键盘" />
<input
id="uni-input-type-number" class="uni-input
" type="number" placeholder="数字输入键盘" />
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-type-digi
t" type="digit" placeholder="带小数点的数字输入键盘" />
<input
id="uni-input-type-digit" class="uni-inpu
t" type="digit" placeholder="带小数点的数字输入键盘" />
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-type-tel
" :type="inputTypeTel" placeholder="电话输入键盘" />
<input
id="uni-input-type-tel" class="uni-input
" :type="inputTypeTel" placeholder="电话输入键盘" />
</view>
</view>
...
...
@@ -36,7 +36,7 @@
<text class="uni-title-text">密码输入框</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-password
" :password="inputPassword" :value="inputPasswordValue" />
<input
id="uni-input-password" class="uni-input
" :password="inputPassword" :value="inputPasswordValue" />
</view>
</view>
...
...
@@ -45,10 +45,10 @@
<text class="uni-title-text">占位符样式</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-placeholder1
" :placeholder-style="inputPlaceHolderStyle" placeholder="占位符文字颜色为红色" />
<input
id="uni-input-placeholder1" class="uni-input
" :placeholder-style="inputPlaceHolderStyle" placeholder="占位符文字颜色为红色" />
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-placeholder2
" :placeholder-class="inputPlaceHolderClass" placeholder="占位符背景色为绿色" />
<input
id="uni-input-placeholder2" class="uni-input
" :placeholder-class="inputPlaceHolderClass" placeholder="占位符背景色为绿色" />
</view>
</view>
...
...
@@ -57,7 +57,7 @@
<text class="uni-title-text">设置禁用输入框</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-disable
" :disabled="true" />
<input
id="uni-input-disable" class="uni-input
" :disabled="true" />
</view>
</view>
...
...
@@ -66,7 +66,7 @@
<text class="uni-title-text">设置最大输入长度</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-maxlength
" :maxlength="10" placeholder="最大输入长度为10" :value="inputMaxLengthValue" @input="onMaxLengthInput" :focus="inputMaxLengthFocus" />
<input
id="uni-input-maxlength" class="uni-input
" :maxlength="10" placeholder="最大输入长度为10" :value="inputMaxLengthValue" @input="onMaxLengthInput" :focus="inputMaxLengthFocus" />
</view>
</view>
...
...
@@ -84,7 +84,7 @@
<text class="uni-title-text">自动获取焦点</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-focus
" :focus="focus" @keyboardheightchange="inputFocusKeyBoardChange"/>
<input
id="uni-input-focus" class="uni-input
" :focus="focus" @keyboardheightchange="inputFocusKeyBoardChange"/>
</view>
</view>
...
...
@@ -93,19 +93,19 @@
<text class="uni-title-text">confirm-type取值(不同输入法表现可能不一致)</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-confirm-send
" confirmType="send" placeholder="键盘右下角按钮显示为发送" />
<input
id="uni-input-confirm-send" class="uni-input
" confirmType="send" placeholder="键盘右下角按钮显示为发送" />
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-confirm-search
" confirmType="search" placeholder="键盘右下角按钮显示为搜索" />
<input
id="uni-input-confirm-search" class="uni-input
" confirmType="search" placeholder="键盘右下角按钮显示为搜索" />
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-confirm-nex
t" confirmType="next" placeholder="键盘右下角按钮显示为下一个" />
<input
id="uni-input-confirm-next" class="uni-inpu
t" confirmType="next" placeholder="键盘右下角按钮显示为下一个" />
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-confirm-go
" confirmType="go" placeholder="键盘右下角按钮显示为前往" />
<input
id="uni-input-confirm-go" class="uni-input
" confirmType="go" placeholder="键盘右下角按钮显示为前往" />
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-confirm-done
" confirmType="done" placeholder="键盘右下角按钮显示为完成" />
<input
id="uni-input-confirm-done" class="uni-input
" confirmType="done" placeholder="键盘右下角按钮显示为完成" />
</view>
</view>
...
...
@@ -141,7 +141,7 @@
<text class="uni-title-text">设置光标颜色为透明(点击本行文字生效,再点复位)</text>
</view>
<view class="uni-input-wrapper">
<input
class="uni-input uni-input-cursor-color
" :cursor-color="cursor_color" value="光标颜色" />
<input
id="uni-input-cursor-color" class="uni-input
" :cursor-color="cursor_color" value="光标颜色" />
</view>
</view>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录