still need to support the abomination that is the <frame> element

This commit is contained in:
Thomas Walpole 2016-07-23 17:17:46 -07:00
parent 114ec10d12
commit 46e215b135
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ end
Capybara.add_selector(:frame) do
xpath do |locator|
xpath = XPath.descendant(:iframe)
xpath = XPath.descendant(:iframe) + XPath.descendant(:frame)
xpath = xpath[XPath.attr(:id).equals(locator.to_s) | XPath.attr(:name).equals(locator)] unless locator.nil?
xpath
end