Winforms Webbrowser DOMに次のhtmlがある場合、2番目の要素を次のように取得しようとしています。value="type102"
<div class="Input"><input type="radio" name="type" value="type101"
onclick="setType('type101');"><a href="javaScript:setType('type101');"
onclick="s_objectID="javascript:setType('type101');_1";return this.s_oc?
this.s_oc(e):true">type101</a></div>
<div class="Input"><input type="radio" name="type" value="type102"
onclick="setType('type102');" checked="checked"><a href="javaScript:setType('type102');"
onclick="s_objectID="javascript:setType('type102');_1";return this.s_oc?
this.s_oc(e):true">type102</a></div>
私は使用しました
HtmlElement htmlElem = browser.Document.GetElementById(....
と
HtmlElement htmlElem = browser.Document.All.GetElementsByName(....
以前は、しかしこの場合、それらは両方とも同じであるため、値またはhrefで取得する必要があります
外部ライブラリなしで2番目の要素を直接取得することは可能ですか、それともGetElementsByNameのコレクションを取得してそれらを反復処理する必要がありますか?