我想做一个测试,看看我的webbroswer控件上是否显示以下文字
<form method="post" action=""><table border="0" class="formPage"><tr><td colspan="2" class="msg">Link submitted and awaiting approval.<br />Submit another link.</td></tr>
我正在寻找“提交链接并等待批准”的文字。
答案 0 :(得分:1)
我相信你可以使用这样的东西:
if(webBrowser.DocumentText.Contains("Link submitted and awaiting approval.")) {
// Do something.
}