SubmitForm() private method

private SubmitForm ( WebFormTester form ) : void
form WebFormTester
return void
コード例 #1
0
ファイル: WebForm.cs プロジェクト: formist/LinkMe
 /// <summary>
 /// Post this page to the server.  (That is, the page that contains the form being tested.)
 /// </summary>
 protected internal override void Submit()
 {
     browser.SubmitForm(this);
 }
コード例 #2
0
 /// <summary>
 /// Submit this form to the server.
 /// </summary>
 public void Submit()
 {
     WebAssert.Visible(this);
     browser.SubmitForm(this);
 }