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(); }
public void Initialize() { MyPokedexPage.GoTo(); }