Html code
<input type="text" class="input-txt" data-bind="value: Email,qtipValMessage:Email" id="txtEmail" maxlength="160" oncopy="return false" onpaste="return false" title="Please enter the Email" data-orig-title="">
my Java code
WebElement email = driver.findElement(By.id("txtEmail"));
new Actions(driver).moveToElement(email).perform();
email.clear();
email.sendKeys("[email protected]");
while executing my code its provide an error message "Element is not currently interactable and may not be manipulated"
because html code mapped with "oncopy" and "onpaste" tag (return false), so that sendKeys() failed during the execution
please help how will we pass the value in this field