mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
54 lines
1.4 KiB
Text
54 lines
1.4 KiB
Text
|
|
<html>
|
|
<head>
|
|
<title>With Windows</title>
|
|
<script src="/jquery.js" type="text/javascript" charset="utf-8"></script>
|
|
<script language="javascript" type="text/javascript">
|
|
$(document).ready(function(){
|
|
$('#openWindow').click(function(){
|
|
window.open('/popup_one', 'firstPopup');
|
|
return false;
|
|
});
|
|
|
|
$('#openWindowWithTimeout').click(function(){
|
|
setTimeout(function(){
|
|
window.open('/popup_one', 'timeoutPopup');
|
|
}, 600);
|
|
return false;
|
|
});
|
|
|
|
$('#openWindowWithLongerTimeout').click(function(){
|
|
setTimeout(function(){
|
|
window.open('/popup_one', 'longerTimeoutPopup');
|
|
}, 1400);
|
|
return false;
|
|
});
|
|
|
|
$('#openTwoWindows').click(function() {
|
|
window.open('/popup_one', 'firstPopup');
|
|
window.open('/popup_two', 'secondPopup');
|
|
return false;
|
|
});
|
|
|
|
$('body').addClass('loaded');
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<button id="openWindow">Open new window</button>
|
|
|
|
<button id="openWindowWithTimeout">Open new window with timeout</button>
|
|
|
|
<button id="openWindowWithLongerTimeout">Open new window with longer timeout</button>
|
|
|
|
<button id="openTwoWindows">Open two windows</button>
|
|
|
|
<button id="doesNotOpenWindows">Does not open windows</button>
|
|
|
|
<iframe src="/frame_one" id="frameOne"></iframe>
|
|
|
|
<div id="scope">
|
|
<span>My scoped content</span>
|
|
</div>
|
|
</body>
|
|
</html>
|