Controls can currently be checked for their disabled state, their hidden state and their option set values (to check if filtering works).
Hidden and disabled state can be retrieved as a combined object:
const { isVisible, isDisabled } = await xrmTest.Control.get("name");
The array of currently available options for a control can be retrieved like this:
const options = await xrmTest.Control.getOptions("industrycode");
Generated using TypeDoc