This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cupom.feature | |
> Utilizando o *contexto:* | |
``` | |
#language: pt | |
Funcionalidade: Uso de Cupons no Checkout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cupom.feature | |
> Sem o uso do *contexto:* | |
``` | |
#language: pt | |
Funcionalidade: Uso de Cupons no Checkout | |
Como um usuário do Starbugs, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> Praticando o Gherkin, fazendo uma especificação com uma sintaxe mais detalhada | |
- Para melhorar a comunicação | |
- Sem pensar na automação, apenas na colaboração no desenvolvimento do software | |
#language: pt | |
``` | |
#language: pt | |
Funcionalidade: Uso de Cupons no Checkout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Projeto Cucumber - 3 camadas | |
> Camada de Page Object | |
> Validações e ações organizadas por página* | |
### checkout.rb | |
``` | |
require 'rspec' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Projeto Cucumber - 3 camadas | |
## Camada de Implementação | |
> Steps | |
* Organizando o fluxo de execução | |
### catalogo.feature | |
``` | |
Quando('acesso a página principal da Starbugs') do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Projeto Cucumber - 3 camadas | |
> Camada de Especificação | |
> Gherkin | |
### steps.rb | |
``` | |
#language: pt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> Com única varável global | |
> Trabalhando com Datatables e objetos Hash do Ruby | |
# steps.rb | |
``` | |
Quando('acesso a página principal da Starbugs') do | |
visit 'https://starbugs.vercel.app/' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> Formas de implementar o Datatable | |
# catalogo.feature | |
> Datatable de chave e valor | |
> Para massas de testes de uma única linha, pouca informação. | |
``` | |
#language: pt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# catalogo-feature. | |
> com pipe, encurtando e organizando melhor o código | |
> Com data table, em um únco step por toda a massa de testes com várias linhas | |
#language: pt | |
``` | |
Funcionalidade: Catálogo de cafés | |
Como um usuário do site da Starbugs, eu quero ver o Catálogo de cafés na página principal | |
Para que eu possa escolher e saber mais sobre os produtos disponívels |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# catalogo.feature | |
``` | |
#language: pt | |
Funcionalidade: Catálogo de cafés | |
Como um usuário do site da Starbugs, eu quero ver o Catálogo de cafés na página principal | |
Para que eu possa escolher e saber mais sobre os produtos disponívels | |
Cenário: Acessar o Catálogo de cafés na página principal |
NewerOlder