SubmitForm() private method

private SubmitForm ( WebFormTester form ) : void
form WebFormTester
return void
Ejemplo n.º 1
0
 /// <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);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Submit this form to the server.
 /// </summary>
 public void Submit()
 {
     WebAssert.Visible(this);
     browser.SubmitForm(this);
 }