C#点击具有相同id的html按钮

本文关键字:id html 按钮 | 更新日期: 2023-09-27 18:20:11

有人能帮我吗。我需要知道如何使用网络浏览器自动生成表单,只需单击上包含"报告"文本的按钮。我不能用ID做这件事,因为他们都有"发送"ID。

this.form.target='';
        this.form.action='/foglioorario.php';
        this.form.submit();"><OPTION value='0'></OPTION><OPTION value='1'>Tirana</OPTION></SELECT></td>
                </tr><tr>
                    <td><input name='azione' value='Importa Curva' type='button' class='TbStyle' onclick="on_click('form1', 'importForecast.php', 'import')"/></td>
                    <td colspan='2'><span style='margin-right:20px'>
                        Alpha:<input name='alpha' id='alpha' type='TEXT' maxlength='3' value='95' style='width:25px'/>% 
                        </span>  
                        <span style='margin-right:20px'>
                        TMS:<input name='tms' id='tms' type='TEXT' maxlength='3' value='290' style='width:25px'/>
                        </span>                 
                        <span>                
                        <input type='submit' id='send' name='send' value='Compara curva' class='TbStyle'/>
                        </span>
                        <span>
                        <input type='submit' id='send' name='send' value='Export CC' class='TbStyle' title='Click per export Excel'/>
                        </span>
                    </td>
                    <td><input type='submit' id='send' name='send' value='Report' class='TbStyle'/>
                    <input type='submit' id='send' name='send' value='Export R' class='TbStyle' title='Click per export Excel'/></td>
                    <td><input type='submit' id='send' name='send' value='Riepilogo Sett' class='TbStyle'/>
                    <input type='submit' id='send' name='send' value='Export S' class='TbStyle' title='Click per export Excel'/></td>
                    <td>
                        <span>Pause: <input type='checkbox' name='chkpause' /></span>
                        <span style='padding-left:10px'>Disp.Strao: <input type='checkbox' name='chkStrao' /></span>
                </tr>

C#点击具有相同id的html按钮

我想我明白你的意思了,如果这对你有用的话,请告诉我。

IHTMLElementCollection buttonCol = doc.getElementsByTagName("input");
foreach (IHTMLElement btn in buttonCol)
{
    if (btn.getAttribute("value") == "Report")
    {
        btn.click();
        break;
    }
}

你的回答救了我,我只是修改了一点,在没有mshtml的情况下使用了它。这就是我使用它的方式:

        WebBrowser wb = webBrowser1;
        var doc = wb.Document;
        HtmlElementCollection el = doc.GetElementsByTagName("input");
        foreach (HtmlElement btn in el)
        {
            if (btn.GetAttribute("value") == "Report")
            {
                btn.InvokeMember("click");
                break;
            }
        }

你是伟大的thnx