UNPKG
cypress-enterprise-commands
Version:
latest (1.1.6)
1.1.6
1.1.5
1.1.4
Reusable Cypress custom commands for enterprise web applications
cypress-enterprise-commands
/
dist
/
commands
/
11.Input_TextHandling.d.ts
8 lines
(7 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
declare
namespace
Cypress
{
interface
Chainable
<
Subject
> {
inputText
(
attr
:
string
,
str
:
string
):
Chainable
<
any
>;
inputTextArea
(
index
:
number
,
text
:
string
):
Chainable
<
any
>;
inputDecimal
(
index
:
number
,
value
:
number
):
Chainable
<
any
>; } }