Hi,
I am using selenium for testing out application.
I encounter a problem with inline-editing that I reproduce with the code below on the demo in your site.
What happen is that the field got update but after click on the "Update" button the value remain as before.
With nativeEvents=true it does work but it cause many other issues.
How can it work with nativeEvenets=false ?
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.ie.driver",
"C:\\Dev\\Selenium\\IEDriverServer.exe");
final DesiredCapabilities capabilities = DesiredCapabilities
.internetExplorer();
capabilities.setCapability("nativeEvents", false);
capabilities.setCapability(
InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION, true);
capabilities.setCapability(InternetExplorerDriver.REQUIRE_WINDOW_FOCUS,
true);
WebDriver driver = new InternetExplorerDriver(capabilities);
driver.get("http://demos.telerik.com/kendo-ui/grid/editing-inline");
driver.findElement(
By.xpath(".//*[@id='grid']/div[3]/table/tbody/tr[2]/td[5]/a[1]/span"))
.click();
Thread.sleep(3 * 1000);
driver.findElement(
By.xpath(".//*[@id='grid']/div[3]/table/tbody/tr[2]/td[1]/input"))
.sendKeys("kuku");
Thread.sleep(3 * 1000);
driver.findElement(
By.xpath(".//*[@id='grid']/div[3]/table/tbody/tr[2]/td[5]/a[1]/span"))
.click();
Thread.sleep(3 * 1000);
}