mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
12 lines
393 B
Text
12 lines
393 B
Text
<%# frozen_string_literal: true %>
|
|
<html>
|
|
<head>
|
|
<title>With Frames</title>
|
|
</head>
|
|
<body>
|
|
<div id="divInMainWindow">This is the text for divInMainWindow</div>
|
|
<iframe src="/frame_one" id="frameOne" name="my frame one"></iframe>
|
|
<iframe src="/frame_two" id="frameTwo"></iframe>
|
|
<iframe src="/frame_parent" id="parentFrame"></iframe>
|
|
</body>
|
|
</html>
|