We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e4d6d8d + bcf57c8 commit 7f37640Copy full SHA for 7f37640
README.md
@@ -1029,6 +1029,20 @@ browser.playback_rate # => 2000
1029
#### node? : `Boolean`
1030
#### frame_id
1031
#### frame
1032
+
1033
+Returns the [frame](https://github.com/rubycdp/ferrum#frame) object within parent node:
1034
1035
+```ruby
1036
+div = browser.at_css("div.has-frame")
1037
+div.at_css("iframe").frame # => Frame
1038
+```
1039
1040
+You can keep using [Finders](https://github.com/rubycdp/ferrum#Finders) within that frame object:
1041
1042
1043
+browser.at_css("div.has-frame").frame.at_css("body") # => Node
1044
1045
1046
#### focus
1047
#### focusable?
1048
#### moving? : `Boolean`
0 commit comments