org.openqa.selenium.ElementNotInteractableException: element not interactable "when interacting with VueSelect
so guys, in my current project i was interacting with VueSelect since we are using Nuxt.js i got the error : org.openqa.selenium.ElementNotInteractableException: element not interactable when i execute my code like below :
WebElement currency = driver.findElement(By.id("select_currency")); Assert.assertTrue(currency.isDisplayed()); currency.click(); Thread.sleep(3000); currency.sendKeys("Indonesian Rupiah"); Thread.sleep(3000); currency.sendKeys(Keys.ENTER); // below the frontend code in case you guys need it <label>Currency</label> <VueSelect :class=" validationContext.errors[0] ? 'vs__dropdown-toggle-invalid' : '' " :options="listCurrency" placeholder="Select Currency" label="text" v-model="selectCurrency" id="select_currency" ></VueSelect>
i use Thread.sleep so i could check the interface
before the code failed this is the latest condition before it's shut down
it seems like it got error at the code : currency.sendKeys("Indonesian Rupiah"); anybody could give me insight about this?
i hope i could get some help