forked from SeleniumHQ/seleniumhq.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
531 lines (453 loc) · 20 KB
/
index.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
<!DOCTYPE html>
<link rel="stylesheet" href="/css/header.css"/>
<html>
<head>
<meta name="generator" content="Hugo 0.59.0" />
<title>SeleniumHQ Browser Automation</title>
<link rel="icon" href="/favicon.ico" type="image/png">
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<header id="header" class="header">
<a href="https://selenium.dev" class="headerLink">
<img class="logo logo-large" src="/images/selenium_logo_large.png"/>
<img class="logo logo-small" src="/images/selenium_logo_square_green.png"/>
<img class="logo logo-small logo-hide" src="/images/selenium_logo_square_white.png"/>
</a>
<a id="dropdownButton" class="dropdownButton" onClick="toggleMenu()">MENU +</a>
<nav id="navbar" class="navbar">
<div class="nav-item" onClick="toggleAboutNav()">
<span>About</span>
<div id="aboutArrow" class="arrow-down"></div>
</div>
<ul id="aboutSubnav" class="about-subnav">
<div class="subnav subnav-item">
<a href="/about">About</a>
</div>
<div class="subnav subnav-item">
<a href="/events">Events</a>
</div>
<div class="subnav subnav-item">
<a href="/ecosystem">Ecosystem</a>
</div>
<div class="subnav subnav-item">
<a href="/history">History</a>
</div>
<div class="subnav subnav-item">
<a href="/getinvolved">Get Involved</a>
</div>
<div class="subnav subnav-item">
<a href="/sponsors">Sponsors</a>
</div>
</ul>
<a class="nav-item" href="/downloads">Downloads</a>
<a class="nav-item" href="/projects">Projects</a>
<a class="nav-item" href="/documentation">Documentation</a>
<a class="nav-item" href="/support">Support</a>
<a class="nav-item" href="/blog">Blog</a>
<div class="nav-item">
<div class="search-bar-container">
<script>
(function() {
var cx = '018435082943254453647:ktxsp1-jcb8';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:searchbox-only></gcse:searchbox-only>
<img class="search-icon" src="/images/search.png"/>
</div>
</div>
</nav>
</header>
<body>
<script>
function activateSearch() {
console.log('ACTIVATE')
}
function toggleMenu() {
const navbarItems = document.getElementsByClassName("nav-item");
const navbarElements = [...navbarItems];
const smallLogos = document.getElementsByClassName("logo logo-small");
const logoElements = [...smallLogos];
const header = document.getElementById("header");
const dropdownButton = document.getElementById("dropdownButton");
const subnavs = document.getElementsByClassName("about-subnav");
const subnavElements = [...subnavs];
const aboutArrow = document.getElementById("aboutArrow");
if(dropdownButton.innerText === "MENU +") {
dropdownButton.innerText = "MENU -"
} else dropdownButton.innerText = "MENU +"
navbarElements.forEach(element => {
if(element.className === "nav-item") {
element.className += " dropdown-active"
} else {
element.className = "nav-item"
}
})
subnavElements.forEach(element => {
element.className = "about-subnav";
});
aboutArrow.className = "arrow-down";
logoElements.forEach(element => {
if(element.className.includes("logo-hide")) {
element.className = "logo logo-small"
} else {
element.className += " logo-hide"
}
})
if(header.className === "header") {
header.className += " dropdown-active"
} else {
header.className = "header"
}
}
function toggleAboutNav() {
const aboutSubnav = document.getElementById("aboutSubnav");
const aboutArrow = document.getElementById("aboutArrow");
if(aboutSubnav.className === "about-subnav") {
aboutSubnav.className += " about-subnav-active";
} else {
aboutSubnav.className = "about-subnav"
}
if(aboutArrow.className === "arrow-up") aboutArrow.className = "arrow-down";
else aboutArrow.className = "arrow-up";
}
</script>
<link rel="stylesheet" href="/css/main.css"/>
<link rel="stylesheet" href="/css/index.css"/>
<link href="https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Encode+Sans:300,700" rel="stylesheet">
<!DOCTYPE html>
<link rel="stylesheet" href="/css/main.css"/>
<div class="banner-notification">
<section class="banner-message">
<div class= "banner-message-container" id="banner-conservancy">
The Selenium project is a member of Software Freedom Conservancy, which handles
legal and financial needs for the project. Conservancy is
currently raising funds to continue their mission. Consider
<a href="https://sfconservancy.org/supporter/">becoming a supporter</a>!
<button type="button" class="dismiss" aria-controls="banner-conservancy" aria-label="dismiss-this-banner">X</button>
<script>
(function(config) {
var banner = document.getElementById(config.id);
var button = banner.querySelector('.dismiss');
var dismissed = parseInt(localStorage.getItem(config.id),10);
var duration = config.duration;
if (dismissed && (!duration || (dismissed > Date.now() - duration))) {
return banner.parentElement.removeChild(banner);
}
button && button.addEventListener('click', function() {
localStorage.setItem(config.id, Date.now());
return banner.parentElement.removeChild(banner);
});
})({ "id": "banner-conservancy", "duration": "" });
</script>
</div>
</section>
</div>
<body>
<section class="hero homepage" style="background-image: url(/images/green-bg-opt.jpg)">
<h1>Selenium automates browsers. That's it!</h1>
<h1 class="sub-header">What you do with that power is entirely up to you.</h1>
<div class="header-description">
<p class="body-large">
Primarily it is for automating web applications for testing purposes,
but is certainly not limited to just that.
</p>
<p class="body-large">
Boring web-based administration tasks can (and should) also be automated as well.
</p>
</div>
</section>
<section class="getting-started dark-background">
<h2>Getting Started</h2>
<div class="getting-started-topic-container">
<div class="getting-started-topic">
<div class="getting-started-logo-container">
<img class="getting-started-logo" src="/images/selenium_logo_square_red.png"/>
</div>
<h3 class="webdriver-header">Selenium WebDriver</h3>
<p>
If you want to create robust, browser-based regression automation suites
and tests, scale and distribute scripts across many environments, then you want
to use Selenium WebDriver, a collection of language specific bindings to drive
a browser - the way it is meant to be driven.
</p>
<div class="download-button-container">
<a href="/downloads">
<div class="download-button webdriver"><b>DOWNLOAD</b></div>
</a>
</div>
</div>
<div class="getting-started-topic">
<div class="getting-started-logo-container">
<img class="getting-started-logo" src="/images/selenium_ide_logo_square.png"/>
</div>
<h3 class="ide-header">Selenium IDE</h3>
<p>
If you want to create quick bug reproduction scripts,
create scripts to aid in automation-aided exploratory
testing, then you want to use Selenium IDE; a Chrome
and Firefox add-on that will do simple record-and-playback
of interactions with the browser.
</p>
<div class="download-button-container">
<a href="/downloads">
<div class="download-button ide"><b>DOWNLOAD</b></div>
</a>
</div>
</div>
<div class="getting-started-topic">
<div class="getting-started-logo-container">
<img class="getting-started-logo" src="/images/selenium_grid_logo_square.png"/>
</div>
<h3 class="grid-header">Selenium Grid</h3>
<p>
If you want to scale by distributing and running tests on several machines
and manage multiple environments from a central point, making it easy to run the tests
against a vast combination of browsers/OS, then you want to use Selenium Grid.
</p>
<div class="download-button-container">
<a href="/downloads">
<div class="download-button grid"><b>DOWNLOAD</b></div>
</a>
</div>
</div>
</div>
</section>
<!DOCTYPE html>
<link rel="stylesheet" href="/css/main.css"/>
<div class="selenium-backers separator">
<h2>Selenium Level Sponsors</h2>
<div class="backers">
<div class="backer-logo">
<a href="http://www.browserstack.com/automate/?utm_campaign=open-source-sponsor&utm_source=seleniumorg&utm_medium=referral">
<img class="backer-logo" src="/images/sponsors/browserstack.png"/>
</a>
</div>
<div class="backer-logo">
<a href="http://saucelabs.com">
<img class="backer-logo" src="/images/sponsors/saucelabs.png"/>
</a>
</div>
<div class="backer-logo">
<a href="http://bit.ly/36uZ7ad">
<img class="backer-logo" src="/images/sponsors/experitest.png"/>
</a>
</div>
<div class="backer-logo">
<a href="https://newrelic.com/synthetics?utm_campaign=brn+awr+seleniumorg+FY17Q1&utm_medium=REF&utm_source=selenium.dev&utm_content=synthetics-logo+&mpc=REF-selenium.dev-EN-generic--synthetics-logo">
<img class="backer-logo" src="/images/sponsors/synthetics.png"/>
</a>
</div>
<div class="backer-logo">
<a href="https://crossbrowsertesting.com/selenium-testing?utm_source=seleniumhq&utm_campaign=sshp">
<img class="backer-logo" src="/images/sponsors/CBT.png"/>
</a>
</div>
<div class="backer-logo">
<a href="https://applitools.com/">
<img class="backer-logo" src="/images/sponsors/applitools.png"/>
</a>
</div>
<div class="backer-logo">
<a href="https://www.ranorex.com/selocity/browser-extension.html">
<img class="backer-logo" src="/images/sponsors/selocity_banner_seleniumhq.png"/>
</a>
</div>
<div class="backer-logo">
<a href="https://software.microfocus.com/en-us/software/leanft">
<img class="backer-logo" src="/images/sponsors/microfocus_logo.png"/>
</a>
</div>
<div class="backer-logo">
<a href="http://www.subject-7.com/">
<img class="backer-logo" src="/images/sponsors/subject7_logo.png"/>
</a>
</div>
</div>
</div>
<!DOCTYPE html>
<link rel="stylesheet" href="/css/main.css"/>
<div class="selenium-backers separator">
<h2>Platinum Level Sponsors</h2>
<div class="backers">
<div class="backer-logo">
<a href="https://www.testbirds.com/services/quality-assurance/testing-environment/?utm_source=seleniumhq&utm_campaign=int-cloud-logo-sponsoring-seleniumhq&utm_medium=logo-sponsoring">
<img class="backer-logo" src="/images/sponsors/testbirds.png"/>
</a>
</div>
<div class="backer-logo">
<a href="https://multilogin.com/">
<img class="backer-logo" src="/images/sponsors/multilogin.png"/>
</a>
</div>
</div>
</div>
<div class="news dark-background">
<span class="news-header"><h2>News</h2></span>
<div class="news-item">
<div class="news-metadata">
<h4>SeleniumConf London 2019 Videos and Pictures</h4>
<p class= "body">Saturday, November 11, 2019 by <a href="https://twitter.com/diegofmolina">diemol</a></p>
</div>
<div class="news-description">
<p class= "body">SeleniumConf London 2019 videos and pictures are available now!</p>
<a href="https://selenium.dev/blog/2019/seleniumconf-london-2019/">
<div class="read-more">
<span>Read More</span>
<div id="arrowRight" class="arrow-right"></div>
</div>
</a>
</div>
</div>
<div class="news-item">
<div class="news-metadata">
<h4>Selenium IDE Is Dead, Long Live Selenium IDE! </h4>
<p class= "body">Monday, August 8, 2018 by <a href="https://twitter.com/TourDeDave">Tour de Dave</a></p>
</div>
<div class="news-description">
<p class= "body">Selenium IDE is now the Legacy IDE, a new Selenium IDE is coming!</p>
<a href="https://selenium.dev/blog/2018/long-live-selenium-ide/">
<div class="read-more">
<span>Read More</span>
<div id="arrowRight" class="arrow-right"></div>
</div>
</a>
</div>
</div>
<div class="news-item">
<div class="news-metadata">
<h4>Firefox 55 and Selenium IDE</h4>
<p class= "body">Wednesday, August 8, 2017 by <a href="https://twitter.com/shs96c">shs96c</a></p>
</div>
<div class="news-description">
<p class= "body">The bad news: from Firefox 55 onwards, Selenium IDE will no longer work.</p>
<a href="https://selenium.dev/blog/2017/firefox-55-and-selenium-ide/">
<div class="read-more">
<span>Read More</span>
<div id="arrowRight" class="arrow-right"></div>
</div>
</a>
</div>
</div>
<div class="button-container green">
<a href="/blog">
<div class="button green"><b>MORE NEWS</b></div>
</a>
</div>
</div>
</body>
<!DOCTYPE html>
<link rel="stylesheet" href="/css/main.css"/>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<div class="support-selenium-container">
<div class="support-selenium">
<h2>Support the Selenium Project</h2>
<p>Want to support the Selenium project? Learn more or view the full list of sponsors.</p>
<div class="button-container">
<a href="/sponsors">
<div class="button"><b>LEARN MORE</b></div>
</a>
</div>
</div>
</div>
<body>
<!DOCTYPE html>
<link rel="stylesheet" href="/css/main.css"/>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<div class="donate-selenium-container">
<div class="donate-selenium">
<h2>Donate to Selenium</h2>
<h3>with PayPal</h3>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="V56W8WNRPQ5SS">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<body>
<!DOCTYPE html>
<link rel="stylesheet" href="/css/footer.css"/>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<footer>
<div onClick="toggleSitemap()" class="toggle-container">
Sitemap
<div id="sitemapArrow" class="arrow-down"></div>
</div>
<div id="navLinks" class="nav-links">
<div class="footer-section">
<a href="/about"><h3>About</h3></a>
<a href="/events">Events</a>
<a href="/blog">News</a>
<a href="/history">History</a>
<a href="/sponsor">Contribute</a>
<a href="/sponsors">Sponsors</a>
<a href="/getinvolved">Get Involved</a>
<a href="/ecosystem">Ecosystem</a>
<a href="https://selenium.dev/documentation/en/front_matter/copyright_and_attributions/#license">License</a>
</div>
<div class="footer-section">
<a href="/downloads"><h3>Downloads</h3></a>
<a href="/maven">Maven</a>
<a href="/thirdparty">Third Party</a>
<a href="https://github.com/SeleniumHQ/selenium">Source Code</a>
</div>
<div class="footer-section">
<a href="/projects"><h3>Projects</h3></a>
<a href="/projects/#selenium-webdriver">Selenium WebDriver</a>
<a href="/projects/#selenium-grid">Selenium Grid</a>
<a href="/projects/#selenium-ide">Selenium IDE</a>
</div>
<div class="footer-section">
<a href="/support"><h3>Support</h3></a>
<a href="/blog">Blog</a>
<a href="/documentation">Documentation</a>
</div>
</div>
<div class="social">
Follow us on twitter to keep up-to-date with all Selenium development and community activity!
<div class="social-icons">
<a href="mailto:[email protected]"><img class="social-icon" src="/images/mail.png"/></a>
<a href="https://github.com/SeleniumHQ/selenium"><img class="social-icon" src="/images/github.png"/></a>
<a href="https://twitter.com/SeleniumHQ"><img class="social-icon" src="/images/twitter.png"/></a>
<a href="https://www.facebook.com/Selenium2.WebDriver"><img class="social-icon" src="/images/facebook.png"/></a>
<a href="https://www.youtube.com/channel/UCbDlgX_613xNMrDqCe3QNEw"><img class="social-icon" src="/images/youtube.png"/></a>
</div>
</div>
</footer>
<div class="sfc">
<p style="text-align:center;">All rights reserved, Software Freedom Conservancy</p>
</div>
<body>
<script>
function toggleSitemap () {
const sitemapArrow = document.getElementById("sitemapArrow");
const navLinks = document.getElementById("navLinks");
if(sitemapArrow.className === 'arrow-down') {
sitemapArrow.className = 'arrow-up'
} else {
sitemapArrow.className = 'arrow-down'
}
if(navLinks.className === 'nav-links') {
navLinks.className = 'nav-links show'
} else {
navLinks.className = 'nav-links'
}
}
</script>