Spix's item lookup fails to find and QML Item of Popup type or children of it (even when it is visible/open).
e.g.
Popup {
id: mypopup
Rectangle {
id: myrect
}
}
Spix isn't able to find mypopup or myrect.
We uses Popups for various kinds of dialog questions with buttons in our app and Spix isn't able to click on any of the dialog buttons or even find the Popup itself to determine visibility (when the popups are open), so we can't even add helper functions to click the buttons etc.
The Qt docs talk about some kind of dynamic re-parenting and there are properties contentItem, contentChildren and contentData (but no children as it inherits from QtObject not Item, which does have an objectName).
Any ideas where to look troubleshooting or seeing how to add support for that?
Spix's item lookup fails to find and QML Item of Popup type or children of it (even when it is visible/open).
e.g.
Spix isn't able to find mypopup or myrect.
We uses Popups for various kinds of dialog questions with buttons in our app and Spix isn't able to click on any of the dialog buttons or even find the Popup itself to determine visibility (when the popups are open), so we can't even add helper functions to click the buttons etc.
The Qt docs talk about some kind of dynamic re-parenting and there are properties
contentItem,contentChildrenandcontentData(but nochildrenas it inherits fromQtObjectnotItem, which does have anobjectName).Any ideas where to look troubleshooting or seeing how to add support for that?