Beispiel #1
0
        public void AddingAndReleasingPokemonIsSuccessful()
        {
            AddPokemonPage.AssertIsAt();

            AddPokemonPage.Add()
            .WithNickname("charchar")
            .WithPokemon("Charizard")
            .WithPokeball("Net Ball")
            .WithCaptureDate("01/01/2000")
            .WithLocation("Automation Station")
            .WithLevel("33")
            .WithSex("Female")
            .Submit();

            AddPokemonPage.CurrentAddPokemonForm.AssertSubmissionSucceeded();

            MyPokedexPage.GoTo();

            MyPokedexPage.ViewPokemonByNickname("charchar");

            MyPokedexPage.ReleaseCurrentPokemon();

            MyPokedexPage.AssertReleaseIsSuccessful();
        }
Beispiel #2
0
 public void Initialize()
 {
     MyPokedexPage.GoTo();
 }
Beispiel #3
0
 public void GoingToMyPokedexPageIsSuccessful()
 {
     MyPokedexPage.AssertIsAt();
 }