Excel VBA + Selenium Chrome でファイルのアップロード方法
Excel VBA でファイルのアップロードを行いたいのですが、動作しません。。
◆HTML
<td class="upload" colspan="2"> <div id="dropArea"> ここにPDFファイルをドロップしてください。<br /> または<br /> <p class="commands" > <label class="button">ファイルを選択してください。<input id="uploadFiles" type="file" multiple="multiple" accept="application/pdf,image/jpeg,image/png,image/tiff,application/zip" style="display:none" /></label> </p> </div> </td>◆VBAソースコード
driver.Start "chrome"
driver.Get "https://########.com/Login"
driver.Wait 1000
fileURL = "C:\PS\ABCDE.pdf" driver.FindElementByXPath("//*[@id=""dropArea""]").SendKeys (fileURL)
発生している問題・エラーメッセージ
SeleniumError
element not interactable
(session info: chromedriver=87.0.4280.88)
(Driver info: chromedrive=87.0.4280.88
該当のソースコード
driver.FindElementByXPath("//*[@id=""dropArea""]").SendKeys (fileURL)
バージョン
Excel365、Google Chrome 87.0.4280.88(64 ビット)
あなたの回答
tips
プレビュー