自动提交表单后搜索浏览器内容
本文关键字:浏览器 搜索 提交 表单 | 更新日期: 2023-09-27 18:34:37
我使用 WatiN 在我的网站上自动提交表单。我遇到的问题是我找不到任何关于提交后如何搜索页面并验证是否存在字符串的文档。我需要它在结果页面中查找字符串,如果存在,请继续在列表中插入下一个变量,如果不存在,我需要它来记录插入的字符串导致文本不显示,最好是在文本文件中。这是我到目前为止的代码。
browser.GoTo("https://site.com");
// locate the form by name and fill it
browser.TextField(Find.ByName("form")).TypeText("example");
// click the submit button
browser.Button(Find.ByName("submit")).Click();
不幸的是,这就是我得到的全部。感谢帮助,我只需要被推向正确的方向。
使用 browser.ContainsText("text to find")
验证字符串是否存在。
string[] textToAddList = File.ReadAllLines(@"C:'Users'Syd'Desktop'list.txt");
browser.GoTo("https://site.com");
foreach (string textToAdd in textToAddList)
{
browser.TextField(Find.ByName("form")).TypeText(textToAdd);
browser.Button(Find.ByName("submit")).Click();
browser.WaitUntilComplete();
if (!browser.ContainsText("text to find"))
{
//Log here
break;
}
}