Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4219)

Unified Diff: chrome/test/data/chromedriver/nested_frameset.html

Issue 1799183002: [ChromeDriver] Add nested frame xpath expression in order to switch to frame present inside nested … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/chromedriver/window_commands.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/chromedriver/nested_frameset.html
diff --git a/chrome/test/data/chromedriver/nested_frameset.html b/chrome/test/data/chromedriver/nested_frameset.html
new file mode 100644
index 0000000000000000000000000000000000000000..8551b98e737744c60f0109e58a153b9f64e74376
--- /dev/null
+++ b/chrome/test/data/chromedriver/nested_frameset.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>HTML Nested Frames</title>
+ </head>
+ <frameset rows="*,*">
+ <frame src="page_test.html" name="first_frame" id="1Frame"/>
+ <frameset cols="*,*,*">
+ <frame src="link_nav.html" name="second_frame" id="2Frame"/>
+ <frame src="console_log.html" name="third_frame"/>
+ <frameset rows="*,*">
+ <frame src="nested.html" name="fourth_frame"/>
+ <frame src="subpage_linknav.html" name="fifth_frame"/>
+ </frameset>
+ </frameset>
+ </frameset>
+</html>
« no previous file with comments | « chrome/test/chromedriver/window_commands.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698