await t.click(Selector('.select2-search-choice-close'));
Can someone help me with what is wrong here?
await t.click(Selector('.select2-search-choice-close'));
Can someone help me with what is wrong here?
Try,
await t.click('.select2-search-choice-close');
If this question is still relevant for you, try the Visual Selector Debugger. With it, you can directly see in the browser which elements the selector matches, or you can automatically generate a selector for the selected element.