我无法使用 selenium 将文件上传到 shopify .. Selenium 似乎找不到我需要将文件添加到的输入元素,我假设它与 input type=hidden 部分有关?见图片。
我已经尝试了很多这样的变化
WebDriverWait(browser, 10).until(EC.element_to_be_clickable((By.XPATH, "//input[@id='files_']"))).send_keys("DIR/myfile.pdf')
并尝试执行脚本以尝试取消隐藏输入
container = browser.find_element_by_xpath("//input[@type='hidden']")
browser.execute_script("arguments[0].type = 'text';", container)
等等等等
shopifyapi 的文档不是最好的,我也不是最好的编码器。任何帮助将不胜感激。谢谢!
大话西游666
相关分类