将鼠标点击发送到 WebEngineView Qt C++
Posted
技术标签:
【中文标题】将鼠标点击发送到 WebEngineView Qt C++【英文标题】:Send Mouse Click to WebEngineView Qt C++ 【发布时间】:2016-08-14 19:42:50 【问题描述】:我正在制作一个 WebAutomation 工具,我想知道如何将鼠标事件发送到 WebEngineView。 以下是我尝试过但没有奏效的一些方法。
event= createMouseEvent(QEvent::MouseButtonPress, QPoint(mouse_x,mouse_y), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier);
QApplication::instance()->sendEvent(view,event);
和
QTestEventList eventos;
eventos.addMouseClick(Qt::LeftButton, 0, QPoint(mouse_x,mouse_y), -1);
eventos.simulate(view);
其中 view 是 QWebEngineView。 我知道可以使用 javascript 方法进行点击。但我想为用户提供一种使用鼠标坐标的方法。
我更喜欢跨平台的解决方案(我也在使用该程序的 linux 版本)并且可以在窗口最小化或不最小化时工作查看。
非常感谢菜鸟友好的解释。 请帮忙。 提前致谢。
【问题讨论】:
QWebEngineView 是围绕 Chromium 的轻量级 QWidget 包装器。由于页面元素不是 QWidget,我会假设 QEvent 无法以任何方式与页面交互。因此,您要么必须发送本机鼠标事件——这不会是跨平台的——要么以某种方式公开 Chromium 的鼠标处理程序,以便与它进行交互。 有这方面的消息吗?我现在几乎遇到了同样的问题,但使用的是 Python3/PyQt5... 无..到目前为止.. 我只是祈祷开发人员在下一个版本中添加对此的支持。 【参考方案1】:看来你必须访问QWebEngineView的一个子对象,然后给它发送事件。下面是它的一个实现。
void LeftMouseClick(QWidget* eventsReciverWidget, QPoint clickPos)
QMouseEvent *press = new QMouseEvent(QEvent::MouseButtonPress,
clickPos,
Qt::LeftButton,
Qt::MouseButton::NoButton,
Qt::NoModifier);
QCoreApplication::postEvent(eventsReciverWidget, press);
// Some delay
QTimer::singleShot(300, [clickPos, eventsReciverWidget]()
QMouseEvent *release = new QMouseEvent(QEvent::MouseButtonRelease,
clickPos,
Qt::LeftButton,
Qt::MouseButton::NoButton,
Qt::NoModifier);
QCoreApplication::postEvent(eventsReciverWidget, release);
));
QWebEngineView webView = new QWebEngineView();
// You need to find the first child widget of QWebEngineView. It can accept user input events.
QWidget* eventsReciverWidget = nullptr;
foreach(QObject* obj, webView->children())
QWidget* wgt = qobject_cast<QWidget*>(obj);
if (wgt)
eventsReciverWidget = wgt;
break;
QPoint clickPos(100, 100);
LeftMouseClick(eventsReciverWidget, clickPos);
借用以下答案Qt WebEngine simulate Mouse Event How to send artificial QKeyEvent to QWebEngineView?
【讨论】:
以上是关于将鼠标点击发送到 WebEngineView Qt C++的主要内容,如果未能解决你的问题,请参考以下文章
将 Angular 中的点击发送到 Google Pub/Sub