web-dev-qa-db-fra.com

Scénario de concombre et exemples avec définitions génériques des étapes

J'ai un fichier de fonctionnalité qui est comme ci-dessous:

Scenario Outline: Create ABC

  Given I open the application

  When I enter username as <username>

  And I enter password as <password>

  Then I enter title as <title>

  And press submit


Examples:

| username | password | title |

| Rob      | xyz1      | title1 |

| Bob      | xyz1      | title2 |

Cela m'oblige à avoir des définitions d'étape pour chacune de ces valeurs. Puis-je avoir un 

définition générique de l’étape pouvant être mappée pour chaque nom d’utilisateur, mot de passe ou valeur de titre dans 

la section exemples.

c'est-à-dire au lieu de dire 

@When("^I enter username as Rob$")
public void I_enter_username_as_Rob() throws Throwable {
    // Express the Regexp above with the code you wish you had
    throw new PendingException();
}

puis-je entrer

@When("^I enter username as <username>$")
public void I_enter_username_as_username(<something to use the value passed>) throws Throwable {
    // Express the Regexp above with the code you wish you had
    throw new PendingException();
}
13
trial999

Vous devriez utiliser ce format

Scenario Outline: Create ABC

    Given I open the application
    When I enter username as "<username>"
    And I enter password as "<password>"
    Then I enter title as "<title>"
    And press submit

Qui produirait

@When("^I enter username as \"([^\"]*)\"$")
public void I_enter_username_as(String arg1) throws Throwable {
    // Express the Regexp above with the code you wish you had
    throw new PendingException();
}

arg1 aura maintenant votre nom d'utilisateur/valeur passé.

27
Bala

Le concombre donnerait automatiquement les étapes manquantes dans la console. Il suffit de faire un essai et les étapes manquantes seraient affichées dans la console.

@RunWith(Cucumber.class)
@CucumberOptions(plugin = { "pretty" }, features = { "<path_to_feature>" }, 
    glue = { "<optional_steps_location_Java_file>" }, dryRun = true,
    tags = { "<optional_NOT_req_for_now>" })
public class RunMyCucumberTest {

}

Voir pour plus d'options de concombre

0
Mandy