SubmitForm() 개인적인 메소드

private SubmitForm ( WebFormTester form ) : void
form WebFormTester
리턴 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);
 }