1

好的,所以这似乎是一件容易的事情,但我找不到如何去做。我已经使用该htmlagility包来解析网页,并且效果很好。现在,问题在于以下。

<td width="45%" class="TextBold" nowrap>
<select name="ctl00$BodyContent$ddlChooseView" onchange="if (this.selectedIndex > 0
{pageTracker._trackEvent('webpage tracker','complete report',this.options
[this.selectedIndex].text);}
ShowProcessing(this);setTimeout('__doPostBack(\'ctl00$BodyContent$ddlChooseView\',\'\')', 
    0)" id="ctl00_BodyContent_ddlChooseView" class="TextBold">
        <option selected="selected" value=""> -- Select a view -- </option>
        <option value="H">Option1</option>
        <option value="R">Option2</option>
        <option value="N">Option3</option>
        <option value="NA">Option4</option>
        <option value="RN">Option5</option>
        <option value="QP">Option6</option>

</select>
</td>

如果格式不正确,我深表歉意。我想在html选择对象中选择一个选项。触发页面上的新显示,然后解析该“新”网页。可以htmlagilitypack这样做吗?如果没有,我该怎么做才能选择其中一个选项?

4

3 回答 3

0

此代码可能对您有用它包含基本细节。

<code>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

//Need to add these two libarary
//For that u need to have WebDriver.dll and WebDriver.Support.dll 
using OpenQA.Selenium;
using OpenQA.Selenium.Support.UI;

namespace Test
{
class Program
{
static void Main(string[] args)
{
//Intializing the webdriver. 
//Note i m using firefox driver, others can also be used.
IWebDriver driver = new OpenQA.Selenium.Firefox.FirefoxDriver();
//Navigating to the given page.
driver.Navigate().GoToUrl("url of the page you want to get the option from");
//Finding the element. If element not present it throws exception so do remember to handle it.
var element = driver.FindElement(By.Id("ctl00_BodyContent_ddlChooseView"));
//No intializing the select element option.
SelectElement selectElem = new SelectElement(element);
selectElem.SelectByValue("H"); 
//or i can select option using text that is
selectElem.SelectByText("Option1"); 
}

}
}
</code>

抱歉缩进。

于 2013-02-23T04:35:23.437 回答
0

我认为您对可以做什么有点困惑HtmlAgilityPack...

HtmlAgilityPack- 只是一个praser。

browser's point of view,选择其中一个选项将导致浏览器向页面发送POST类型请求。

您现在可以做的是,使用或模拟该POST请求,然后您将可以使用.WebClientHttpWebRequestnew web pageHtmlAgilityPack

于 2013-02-23T03:42:02.800 回答
0

这可以通过使用 selenium webdriver 轻松完成。阅读它,非常适合处理这种东西。

在这里,我首先选择使用 Webdriver 库获得选项的元素
var selectElem = driver.FindElement(By.Id("ctl00_BodyContent_ddlChooseView"));

现在使用 WebDriver.Support.UI 库我得到了所有的选项
SelectElement selectOption = new SelectElement(selectElem);

现在您可以对元素执行任何操作。即
喜欢
selectOption.SelectByValue("here u give the value")

selectOption.SelectByText("here u give the value")

还有更多……您会发现。

于 2013-02-23T03:42:28.880 回答