| 63 | |
| 64 | QQuickItem *textItem = nullptr; |
| 65 | foreach (auto item, view()->rootObject()->findChildren<QQuickItem *>()) { |
| 66 | if (strcmp(item->metaObject()->className(), "QQuickText") == 0) |
| 67 | textItem = item; |
| 68 | } |
| 69 | QVERIFY(textItem); |
| 70 | Probe::instance()->selectObject(textItem, QPoint()); |
| 71 |
nothing calls this directly
no test coverage detected