Qt UI测试:如何模拟使用QTest QMenuBar项目上的点击? [英] Qt UI testing: How to simulate a click on a QMenuBar item using QTest?

查看:1329
本文介绍了Qt UI测试:如何模拟使用QTest QMenuBar项目上的点击?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我正在尝试从QMenuBar模拟鼠标点击QMenu项目,例如点击另存为QAction使用QTestLib框架。

解决方案



任何想法? / div>

可能这个问题与问题所有者无关,但我认为这对其他人可能有帮助。



不像 QToolBar QMenu 没有方法 widgetForAction 。我发现一个简单的解决方法为这种情况。尝试弹出菜单与 QTest :: mouseClick 如果没有发生尝试使用 QTest :: keyClick(...,first_char_in_menu_tite,Qt :: AltModifier) / code>。要模拟动作执行,可以使用 Qt :: Key_Down 导航到动作,直到到达它,然后按 Qt :: Key_Enter 。我想以下代码可以帮助你理解

  QMenu * menu = getMenu(mainWindow,menuName); 
if(menu!= nullptr){
QTest :: keyClick(mainWindow,menu-> title()。at(1).toLatin1(),Qt :: AltModifier);
}


QList< QAction *> actions = menu-> actions();
foreach(QAction * action,actions){
if(action-> objectName()== actionName){
QTest :: keyClick(menu,Qt :: Key_Enter);
break;
}
QTest :: qWait(1000);
QTest :: keyClick(menu,Qt :: Key_Down);
}


I am trying to simulate a mouse click on a QMenu item from a QMenuBar, for example clicking on "Save As" QAction using the QTestLib framework.

I am triyng this under Windows XP 32 bit and Qt 5.0.2.

Any Ideas?

解决方案

Probably this question is not relevant for question owner, but I suppose it could be helpful for others.

Unlike QToolBar, QMenu doesn't have method widgetForAction. I found a simple workaround for this case. Try popup menu with QTest::mouseClick if nothing happens try to use QTest::keyClick(..., first_char_in_menu_tite, Qt::AltModifier). To simulate action execution you can navigate with Qt::Key_Down to action until you reach it and then press Qt::Key_Enter. I suppose following code can help you to understand

QMenu *menu = getMenu(mainWindow, menuName);
if (menu != nullptr) {
    QTest::keyClick(mainWindow, menu->title().at(1).toLatin1(), Qt::AltModifier);
}


QList<QAction *> actions = menu->actions();
foreach (QAction *action, actions) {
    if (action->objectName() == actionName) {
        QTest::keyClick(menu, Qt::Key_Enter);
        break;
    }
    QTest::qWait(1000);
    QTest::keyClick(menu, Qt::Key_Down);
}

这篇关于Qt UI测试:如何模拟使用QTest QMenuBar项目上的点击?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆