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);
 }