我正在尝试点击链接以将文件附加到页面。页面的HTML结构是
<div class="multi_attach_files">
<span id="WorkkardFileUploader" class="file_uploader">
<div id="px-widget-1" class="px-widget ui-widget-px">
<div class="ui-helper-clearfix">
<div id="px-form-1-input" class="px-form-input">
<form id="pxupload1" name="multipleFileUpload" style="" target="pxupload1_frame" action="/multiupload" method="POST" enctype="multipart/form-data" encoding="multipart/form-data">
<div class="px-input-button ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button">
<span class="ui-button-text">
<span class="label">Attach Files</span>
<span id="dragMsg" class="dragcontainer">Drag Here</span>
<input id="wkFileUpload" class="fileupload" type="file" multiple="" tabindex="-1" name="noteFilename" title="Attach Files" style="background-color: transparent;">
</span>
</div>
我已经尝试了.sendkeys()
,但是Selenium看不到元素(id="wkFileUpload"
)。
有人可以提出建议吗?
答案 0 :(得分:1)
不幸的是,截至目前(2013年9月,Selenium 2.35.0),您无法做到这一点,因为Selenium不支持<input type="file" multiple>
元素。
There is a feature enhancement request由项目开发人员自己做的,它还没有实现。您可以在那里加注星标以在优先级列表中向上移动它。
该错误提到已经完成了一些工作,但我不认为它会很快完成。您最好的选择是使用AutoIT(仅限Windows)或Robot
类(仅适用于与您类似的设置)并在对话框中“盲目地”输入路径:
driver.findElement(By.id("wkFileUpload")).click();
Robot r = new Robot();
r.keyPress(KeyEvent.VK_C); // C
r.keyRelease(KeyEvent.VK_C);
r.keyPress(KeyEvent.VK_COLON); // : (colon)
r.keyRelease(KeyEvent.VK_COLON);
r.keyPress(KeyEvent.VK_SLASH); // / (slash)
r.keyRelease(KeyEvent.VK_SLASH);
// etc. for the whole file path
r.keyPress(KeyEvent.VK_ENTER); // confirm by pressing Enter in the end
r.keyRelease(KeyEvent.VK_ENTER);
很糟糕,但应该有用。请注意,您可能需要这些:How can I make Robot type a `:`?和Convert String to KeyEvents(此外还有新的闪亮KeyEvent#getExtendedKeyCodeForChar()
,它可以执行类似的工作,但只能从JDK7获得。)