gpt4 book ai didi

javascript - SendKey 进入浏览器控件 WinForm .Net

转载 作者:行者123 更新时间:2023-12-02 19:52:19 25 4
gpt4 key购买 nike

我需要使用 GeckoFX Web Control 在网页中发送 Enter 按键事件。

我无法使用 SendKeys.Send({ENTER})

有没有办法在网页中通过 Javascript 发送输入?

最佳答案

由于您使用的是 geckofx,因此您可以使用 nsIDOMWindowUtils 接口(interface)来发送按键。

    var GeckoWebBrowser browser = ...;
nsIDOMWindowUtils utils = Xpcom.QueryInterface<nsIDOMWindowUtils>(browser.Window.DomWindow);
using (nsAString type = new nsAString("keypress"))
{
utils.SendKeyEvent(type, 0, 13, 0, false);
}

请注意,通常无法通过普通 JavaScript 使用 nsIDOMWindowUtils 接口(interface),因为它需要 UniversalXPConnect 特权。

关于javascript - SendKey 进入浏览器控件 WinForm .Net,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9127037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com