C# で WebBrowser を使用しているときに問題が発生しました。
このようにオブジェクト「入力」を探す
HtmlDocument sHTML = webBrowser.Document;
ObjElement HtmlElement;
ObjElement = sHTML.GetElementById (sValue);
if (objElement != null)
{
ObjElement.SetAttribute ("value", sText);
}
しかし、今はチェックボックス (HtmlInputCheckBox) を操作する必要があります。
HtmlInputCheckBox OtherObjElement;
OtherObjElement = sHTML.GetElementById (sValue); <====== ERROR :(
if (OtherObjElement != null)
{
if (!OtherObjElement.checked) OtherObjElement.click
}
HtmlInputCheckBoxでHTMLElementを変換するにはどうすればよいですか?