Qt UI testing: How to simulate a click on a QMenuBar item using QTest?

前端 未结 2 749
情歌与酒
情歌与酒 2021-02-06 03:10

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 W

2条回答
  •  情深已故
    2021-02-06 03:34

    You should use the QTest::mouseClick function. It will simulate the click on any QWidget. I have found that trying to click on a QMenu that causes a blocking call will not work with a unit test.

提交回复
热议问题