内容输入.type
查看完整说明
语法
.type(text)
.type(text, options)
正确用法
cy.get('input').type('Hello, World') // Type 'Hello, World' into the 'input'
错误用法
cy.type('Welcome') // Errors, cannot be chained off 'cy'
cy.clock().type('www.cypress.io') // Errors, 'clock' does not yield DOM elements
传递给.type()
的文本可能包括以下任何特殊字符序列。这些字符会将正确的keyCode、key和which代码传递给.type()
期间发出的任何事件。某些特殊字符序列可能会在键入期间执行操作,如{moveToEnd}、{moveToStart}或{selectAll}。
-
要禁用解析特殊字符序列,请将
parseSpecialCharSequences
选项设置为false
参数option
.type
支持的元素
body
text area
input
- text
- password
- number
- date
- week
- month
- time
- datetime-local
- search
- url
- tel