当我尝试以编程方式单击输入元素(type =" file")时,ChooseFileDialogWindow不会出现。 通过尝试点击“开始上传”,可以在http://imgbb.com/上重新创建同样的问题。在这个网站上它只适用于www.cs.tut.fi上的SimulateMouseButtonEvent,它不起作用。
为元素设置值时,延迟时间为1-2秒,直到它移动到下一个元素。在IE中,这将立即执行。 当浏览器关注元素时,这是在porpuse上完成的吗?有没有办法禁用它?
browser.LoadURL("http://www.cs.tut.fi/~jkorpela/forms/file.html");
browserView.Browser.FinishLoadingFrameEvent += delegate(object sender, FinishLoadingEventArgs e)
{
if (e.IsMainFrame)
{
Browser myBrowser = e.Browser;
DOMDocument document = myBrowser.GetDocument();
foreach (DOMElement el in document.GetElementsByTagName("input"))
{
if (el.GetAttribute("name") == "datafile")
{
el.Focus();
el.Click();
}
}
}
};
答案 0 :(得分:1)
考虑到由于安全限制,您无法通过FileUpload对象上的Click()方法进行单击:
如果算法未被用户激活触发,则中止这些 没有做任何其他事情的步骤。
此规范包含有关FileUpload算法的更多信息:https://html.spec.whatwg.org/multipage/input.html#file-upload-state-(type=file)
以下是一个代码示例,演示如何在www.cs.tut.fi上使用Input FileUpload对象:
browserView.Browser.FinishLoadingFrameEvent += delegate (object sender, FinishLoadingEventArgs e)
{
if (e.IsMainFrame)
{
Browser myBrowser = e.Browser;
DOMDocument document = myBrowser.GetDocument();
foreach (DOMElement el in document.GetElementsByName("datafile"))
{
el.Focus();
System.Drawing.Rectangle rect = el.BoundingClientRect;
Dispatcher.Invoke(() =>
{
browserView.InputSimulator.SimulateMouseButtonEvent(MouseButton.Left,
MouseButtonState.Pressed, 1,
rect.Left + (el.ClientWidth / 2),
rect.Top + (el.ClientHeight / 2));
Thread.Sleep(50);
browserView.InputSimulator.SimulateMouseButtonEvent(MouseButton.Left,
MouseButtonState.Released, 1,
rect.Left + (el.ClientWidth / 2),
rect.Top + (el.ClientHeight / 2));
});
}
}
};
browserView.Browser.LoadURL("https://www.cs.tut.fi/~jkorpela/forms/file.html");
我无法使用您或我的代码示例检测到任何延迟。