0

请任何人帮助我触发远程站点的按钮单击事件,然后获取页面的所有 html 代码

我知道我可以使用 HttpWebRequest 来获取所有数据,但我不知道如何触发点击事件

我发现这段代码:

 `HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create("url"); 

    httpRequest.Method = "POST"; 
    httpRequest.ContentType = "application/x-www-form-urlencoded"; 


byte[] bytedata =  Encoding.UTF8.GetBytes(poststring);
    httpRequest.ContentLength = bytedata.Length;

    Stream requestStream = httpRequest.GetRequestStream();
    requestStream.Write(bytedata, 0, bytedata.Length);
    requestStream.Close();

    HttpWebResponse httpWebResponse = 
    (HttpWebResponse)httpRequest.GetResponse();
    Stream responseStream =  httpWebResponse.GetResponseStream();

 StringBuilder sb = new StringBuilder();

    using (StreamReader reader = 
    new StreamReader(responseStream, System.Text.Encoding.UTF8))
    {
      string line;
      while ((line = reader.ReadLine()) != null)
      {
        sb.Append(line);
      }
    }

`

4

1 回答 1

0

点击使用 jquery 触发器http://api.jquery.com/trigger/

在页面加载时使用它(registerStartupScript)。

如果你想要的不是你创建的网站,而是你想点击网站的按钮,我建议 GreaseMonkey(firefox) 或 Tampermonkey(chrome)。如果您想创建一些东西来在没有 IDE 的情况下操作网站,则可以使用它们。

于 2013-08-22T19:25:27.813 回答