コード例 #1
0
 /// <summary>
 /// Enter postcode
 /// </summary>
 /// <param name="postcode"></param>
 public void EnterPostCode(string postcode)
 {
     ScenarioContext.Current["PostCode"] = postcode;
     PostCodeField.SendKeys(postcode);
 }
コード例 #2
0
 public void ClickRegisterPostCodeField()
 {
     PostCodeField.Click();
 }
コード例 #3
0
 public void SetRegisterPostCodeField(string text)
 {
     PostCodeField.SendKeys(text);
 }
コード例 #4
0
 public void ClearRegisterPostCodeField()
 {
     PostCodeField.Clear();
 }
コード例 #5
0
 //PostCodeField
 public string GetRegisterPostCodeFieldText()
 {
     return(PostCodeField.GetAttribute(TAG_ATTRIBUTE_VALUE));
 }