You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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
,contentChildren
andcontentData
(but nochildren
as it inherits fromQtObject
notItem
, which does have anobjectName
).Any ideas where to look troubleshooting or seeing how to add support for that?
The text was updated successfully, but these errors were encountered: