Ejemplo n.º 1
0
        public AlienAgeResultPage FillOutForm(int earthAge, string planet)
        {
            SelectElement planetDropDown = new SelectElement(AlienPlanet);

            planetDropDown.SelectByText(planet);
            EarthAgeInYears.SendKeys(earthAge.ToString());

            CalculateButton.Click();

            return(new AlienAgeResultPage(driver));
        }
Ejemplo n.º 2
0
 public void ClearForm()
 {
     EarthAgeInYears.Clear();
 }