Clear date input fails on chromewebdriver

前端 未结 5 1678
太阳男子
太阳男子 2021-01-01 22:50

I ran into a problem while switching from firefoxdriver to chromedriver with selenium, it was working fine in FF but now when I try to clear a date input field I have this e

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-01 23:32

    to clear and update the model...

         webElement.sendKeys(Keys.chord(Keys.CONTROL, "a"));
         webElement.sendKeys(Keys.BACK_SPACE);
    

提交回复
热议问题