コード例 #1
0
ファイル: PageElement.cs プロジェクト: xavierm87/TicTacToe
 public void SetValue(string input)
 {
     SeleniumText.Type(this.locator, input);
 }
コード例 #2
0
ファイル: PageElement.cs プロジェクト: xavierm87/TicTacToe
 public string GetValue()
 {
     return(SeleniumText.GetValue(this.locator, TimeConstants.DEFAULT_5_SECONDS));
 }