/*
I have case where I click "ctrl and hold it" then select multiple elements then release ctrl then click add button
example is bellow
*/
await t.pressKey('ctrl'); // is it possible to press and hold ctrl
await t.click("[aria-label='Item1']");
await t.click("[aria-label='Item3']");
await t.click("[aria-label='Item5']");
await t.pressKey('null'); // is it possible to release key
await t.click("[aria-label='Add']");