在chrome下的文本框sendkeys,提示element can't focus--解决方法

在chrome下的文本框sendkeys,提示element can't focus--解决方法(成都-半步流雲,群友解决)

成都-半步流雲
1.升级你的chromedriver,2.降chrome版本
3.用这段代码
Actions actions = new Actions(driver);
actions.moveToElement(website);
actions.click();
actions.sendKeys("Some Name");
actions.build().perform();
4.换浏览器
就是这几个解决方法
原文地址:https://www.cnblogs.com/sschen/p/3622579.html