Using qtestlib
with my Qt5 C++ widgets application, how can I test my full GUI?
In the documentation for qtestlib
, it is explained how I could test an indivdual QWidget
by simulating keypresses etc, however this seems impossible to do for a full UI, because the individual widgets of my UI are hidden inside the automatically generated ui_XXX.h
file.
So how would I go about doing this?