MATLAB App Testing - Confirmation dialog boxes

26 views (last 30 days)
How can I handle confirmation dialog boxes when testing an app with gestures?
Ideally, I would like to choose 'OK' or 'Cancel' based on some variables' values.
I know there is not a straight-forward way to do it but is there any option so that they get disabled or something??
  2 Comments
Michaela Konstantinou
Michaela Konstantinou on 10 Sep 2021
Edited: Michaela Konstantinou on 10 Sep 2021
but I dont have buttons and the confirmation boxes are not properties of the app. They are created with uiconfirm in a another component's callback function.

Sign in to comment.

Accepted Answer

Andy Campbell
Andy Campbell on 13 Sep 2021
Until this functionality is included in the App Testing Framework, if you can adjust the architecture of the source code you can leverage a similar strategy as that outlined here and use a mock for the confirmation dialog.
Does that help you get going?
Thanks,
Andy
  2 Comments
Michaela Konstantinou
Michaela Konstantinou on 15 Sep 2021
I would like to ask if it is possible to close manualy these dialog boxes during testing with matlab.uitest.unlock. Where in the source code or the testing code should I add this feature? could you please help?

Sign in to comment.

More Answers (2)

Sean de Wolski
Sean de Wolski on 10 Sep 2021
You can dismiss and alert but not a confirmation dialog yet. Capability for alerts added in 21a.
https://www.mathworks.com/help/releases/R2021a/matlab/ref/matlab.uitest.testcase.dismissalertdialog.html
  3 Comments

Sign in to comment.


Cris LaPierre
Cris LaPierre on 10 Sep 2021
It sounds like you want to programmatically close a confirmation diaglog box. If so, see this answer.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!