发送鼠标单击WebEngineView Qt C ++

时间:2016-08-14 19:42:50

标签: c++ linux windows qt mouseevent

我正在制作一个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版本)并且可以在窗口最小化或不在窗口时工作图。

非常友好的解释将非常值得赞赏。 请帮忙。 提前谢谢。

1 个答案:

答案 0 :(得分: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?