问题描述
我无法使用硒清除隐藏的多个文件输入。
HTML来源
<input type="file" multiple style="display: none"/>
硒
webElement.sendKeys(file1.absolutePath); // ?? file1 added
webElement.sendKeys(file2.absolutePath); // ⚠ appends file2
webElement.sendKeys(file3.absolutePath); // ⚠ appends file3
/// and so on
文件只是连续追加到输入中,没有明显的清除方法。我已经显示了用于调试目的的input元素,并且所有文件都已放入字段中。
我尝试使用WebElement.clear()
,sendKeys(Keys.BACK_SPACE)
和其他几个。没有人可以使用隐藏的输入元素。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)