diff --git a/docs/en/actions.md b/docs/en/actions.md index 563a96a4..d73a6678 100644 --- a/docs/en/actions.md +++ b/docs/en/actions.md @@ -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" diff --git a/docs/pt/actions.md b/docs/pt/actions.md index d2344217..43e8d446 100644 --- a/docs/pt/actions.md +++ b/docs/pt/actions.md @@ -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) @@ -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"