public void WhenIGiveGoButton(String p0)
 {
     SeleneseCommands.ClickAtButtonText(p0);
 }
 public void ThenTheResultMustBeOnTheLabelHtmlBodyDivDivFormH(String result, String xpath)
 {
     SeleneseCommands.AssertValueAtXpath(xpath, result, TimeSpan.FromSeconds(10));
 }
 public void GivenIEnterEnteredIntoTheElementFirstCalculator(int p0, String p1)
 {
     SeleneseCommands.SendKeysToModel(p1, p0 + "");
 }
 public void GivenIAddUrlAsHttpJuliemr_Github_IoProtractor_Demo(String p0)
 {
     SeleneseCommands.NavigateUrl(p0);
     SeleneseCommands.SetImplicitWait(TimeSpan.FromSeconds(30));
 }
 public void ThenTheResultShouldBe(String result, String xpath)
 {
     SeleneseCommands.AssertValueAtXpath(xpath, result, TimeSpan.FromSeconds(10));
 }
 public void WhenIPressAdd(String p0)
 {
     SeleneseCommands.ClickAtButtonText(p0);
 }
 public void Start(String p0)
 {
     SeleneseCommands.NavigateUrl(p0);
     SeleneseCommands.SetImplicitWait(TimeSpan.FromSeconds(30));
 }