在自动表单提交后搜索浏览器内容

时间:2012-05-17 00:33:46

标签: c# c watin

我正在使用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();

不幸的是,这就是我所得到的。感谢帮助,我只需要朝着正确的方向前进。

1 个答案:

答案 0 :(得分:0)

使用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;
    }
}