标签: c# html web-scraping webbrowser-control autofill
我知道如何在html中自动填充文本字段,但我想知道如何填写html中的图像或文件字段?
HTMLInputElement Name= (HTMLInputElement)item("name", 0); Name.value = "my Name"; HTMLInputElement submit = (HTMLInputElement)item("SubmitButton", 0); submit.click();
但文件字段如何?