mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
Merge branch 'frames'
* frames: still need to support the abomination that is the <frame> element
This commit is contained in:
commit
2fece3ae24
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue