-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew-window-example.html
More file actions
47 lines (46 loc) · 1.49 KB
/
new-window-example.html
File metadata and controls
47 lines (46 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Selenium Practice | New Window Example</title>
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body id="body">
<main id="main">
<section id="about" class="wow fadeInUp">
<div class="container">
<div class="row">
<div class="col-lg-12 content" style="text-align: center">
<h2>Selenium Practice</h2>
<h3>The below button will open the link in new window <br>
For all examples <a href="index.html"> Click here</a>
</h3>
</div>
</div>
</div>
</section>
<section id="about" style="min-height: 400px;">
<div class="container">
<div class="row">
<div class="col-lg-12 content" style="text-align: center">
<div class="text-center"><button id="submit-button" type="submit" onclick="window.open('index.html',
'newwindow',
'width=900,height=600');
return false;">Click Here</button></div>
</div>
</div>
</div>
</section>
<footer id="footer">
<div class="container">
<div class="copyright">
© Copyright <strong>Reveal</strong>. All Rights Reserved
</div>
<div class="credits">
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer>
</body>
</html>