我正在测试使用filepicker进行文件上传的应用程序:
我正在使用watir。
我试过了:
def upload_photos
$b.link(:text, "Upload Photos").click
$b.button(:text, "Choose File").click
end
但代码失败了:
`assert_exists': unable to locate element, using {:text=>"Choose File", :tag_name=>"button"} (Watir::Exception::UnknownObjectException
是否可以使用watir自动执行filepicker上传?怎么样?
答案 0 :(得分:0)
代码
$b.button(:text, "Choose File").click
有两个问题(假设你的filepicker与inkfilepicker演示页面上的相同):
file_field
方法从Watir访问的。单击按钮不支持。相反,有一个set
方法可以点击按钮,选择要上传的文件并关闭窗口。假设您的应用程序中的文件选择器与inkfilepicker演示页面上的文件选择器相同,您可以执行以下操作:
require 'watir-webdriver'
browser = Watir::Browser.new :firefox
# File to upload
file = 'C:\Users\user\Desktop\stuff.jpeg'
# Go to the demo page, which has a file uploader
browser.goto 'https://www.inkfilepicker.com/demos/'
# Click the button that opens the file uploader
browser.button(:class => 'zip-open-button').click
# Wait for the dialog to be displayed
browser.div(:id => 'filepicker_dialog_container').wait_until_present
# Set the file
browser.frame(:id => 'filepicker_dialog').file_field(:id => 'fileUploadInput').set(file)