如何使用 Capybara attach_file 将文件附加到 Rails 中的嵌套表单

How to attach a file to a nested form in Rails using Capybara attach_file

我在 Rails 中使用带有 Capybara 的 Minitest 附加文件时遇到问题。问题是文件字段是嵌套形式。嵌套表单获得一个随机 ID 和名称添加到它,所以我不能 select 这些。

通常情况下,当它不是嵌套形式时,此方法有效:

attach_file("post[featured_image]", "#{Rails.root.join("test/fixtures/files/example-featured-image.jpg")}")

但是,在嵌套表单上,表单字段如下所示:

我认为这应该有效:

within(".image-upload") do
  attach_file('input[type="file"]', "#{Rails.root.join("test/fixtures/files/example-featured-image.jpg")}", make_visible: true)
end

但这给了我这个错误:

Minitest::UnexpectedError:         Capybara::ElementNotFound: Unable to find file field "input[type=\"file\"]" that is not disabled within #<Capybara::Node::Element tag="fieldset"

我还尝试了水豚文档中描述的其他方法 here

有办法吗?我唯一一次让水豚 attach_file 工作是当我能够像上面的 post[featured_image 示例中那样定位元素名称时。

您没有显示足够的 HTML 来确认输入字段实际上在 .image-upload 字段集中,但假设它是那么可能真正的文件输入实际上被隐藏,并替换为其他用于样式目的的东西。此外,传递给 attach_file 的定位器不是 CSS,它是 ID、名称或关联的标签文本(即 'input[type="file"]' 在那里无效)。考虑到所有这些,您可以做很多事情

如果文件字段可见且范围内只有一个,则跳过定位器

attach_file(Rails.root.join("test/fixtures/files/example-featured-image.jpg"))

如果它可见并且范围内有多个,则使用名称或 ID 过滤器选择您想要的那个,可能使用正则表达式

attach_file(Rails.root.join("test/fixtures/files/example-featured-image.jpg"), id: /images_attributes_0_image_file/)

如果文件字段实际上是隐藏的,那么尝试

attach_file(Rails.root.join("test/fixtures/files/example-featured-image.jpg")) {
   # do whatever the user would do to initiate selecting a file
   # click('Upload File') - etc
}

这将尽可能地模拟用户 - 如果这不起作用,那么另一种方法是尝试强制文件输入可见,如

attach_file(Rails.root.join("test/fixtures/files/example-featured-image.jpg"), make_visible: true)