Skip to content

Commit

Permalink
Update actions' documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagodp committed Dec 16, 2019
1 parent 7213874 commit 230751e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/en/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,24 @@ Then I do not see {Foo} is checked
and I don't see <#bar> is checked
```

### see + target + attribute + value
```gherkin
Then I see {Foo} with the attribute "maxlength" valued "200"
and I see the attribute "type" of <#bar> to be "text"
```

### see + target + class + value
*Note: only for web-based applications*
```gherkin
Then I see {Foo} with the class "primary-button"
```

### see + target + style + value
*Note: only for web-based applications*
```gherkin
Then I see {Foo} with the style "color: blue"
```

### see + cookie + value
```gherkin
Then I see the cookie "foo"
Expand Down
23 changes: 23 additions & 0 deletions docs/pt/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@
- [Verificar se elemento está visível](#see--target)
- [Verificar se elemento está habilitado](#see--target--enabled)
- [Verificar se elemento está marcado](#see--target--checked)
- [Verificar se um elemento possui um atributo](#see--target--attribute--value)
- [Verificar se um elemento possui uma classe](#see--target--class--value)
- [Verificar se um elemento possui um estilo](#see--target--style--value)
- [Verificar a url do navegador](#see--url--value)
- [Verificar se o título da janela/aba do navegador tem um certo valor](#see--value--inside--title)
- [Verificar se um dispositivo está com a tela bloqueada](#see--device--locked)
Expand Down Expand Up @@ -655,6 +658,26 @@ Então eu não vejo {Foo} marcado
e não vejo <#bar> marcado
```

### see + target + attribute + value
```gherkin
Então eu vejo {Foo} com o atributo "maxlength" no valor "200"
e eu vejo o atributo "type" de <#bar> com valor "text"
```

### see + target + class + value

*Obs.: somente para aplicações baseadas em web*
```gherkin
Então eu vejo {Foo} com a classe "primary-button"
```

### see + target + style + value

*Obs.: somente para aplicações baseadas em web*
```gherkin
Então eu vejo {Foo} com o estilo "color: blue"
```

### see + cookie + value
```gherkin
Então eu vejo o cookie "foo"
Expand Down

0 comments on commit 230751e

Please sign in to comment.