I am having trouble trying to send Shift and then immediately tilde (~). I have tried several examples, here is one that I am trying. In the system - I am trying to test the next scenario - I need to choose a certain image, and then send shift ~ -> insert certain number, shift 3
shift 3 for example is an immediate action, can't wait between those two. Same for shift ~
browser.actions().mouseMove(imagePicked).perform();
await imagePicked.click();
await browser.actions().sendKeys(((protractor.Key.SHIFT,"~"))).perform();
await browser.actions().sendKeys(barcode).perform();
await browser.actions().sendKeys(((protractor.Key.SHIFT,"3"))).perform();
thanks in advance.