Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
58
node_modules/selenium-webdriver/lib/test/data/selectPage.html
generated
vendored
Normal file
58
node_modules/selenium-webdriver/lib/test/data/selectPage.html
generated
vendored
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Multiple Selection test page</title>
|
||||
</head>
|
||||
<body>
|
||||
<select id="selectWithoutMultiple">
|
||||
<option value="one">one</option>
|
||||
<option value="two" />two</option>
|
||||
</select>
|
||||
|
||||
<select id="selectWithMultipleEqualsMultiple" multiple="multiple">
|
||||
<option selected="selected" label="emmental">Emmental</option>
|
||||
<option label="roquefort">Roquefort</option>
|
||||
<option label="parmigiano">Parmigiano</option>
|
||||
<option label="cheddar">Cheddar</option>
|
||||
</select>
|
||||
|
||||
<select id="selectWithEmptyStringMultiple" multiple="">
|
||||
<option value="one">one</option>
|
||||
<option value="two">two</option>
|
||||
</select>
|
||||
|
||||
<select id="selectWithMultipleWithoutValue" multiple>
|
||||
<option value="one">one</option>
|
||||
<option value="two">two</option>
|
||||
</select>
|
||||
|
||||
<select id="selectWithRandomMultipleValue" multiple="somethingElse">
|
||||
<option value="one">one</option>
|
||||
<option value="two">two</option>
|
||||
</select>
|
||||
|
||||
<select>
|
||||
<optgroup label="Group">
|
||||
<option value="one">one</option>
|
||||
<option id="two-in-group" value="two">two</option>
|
||||
</optgroup>
|
||||
</select>
|
||||
|
||||
<select id="selectWithMultipleLongList" multiple>
|
||||
<option>one</option>
|
||||
<option>two</option>
|
||||
<option>three</option>
|
||||
<option>four</option>
|
||||
<option>five</option>
|
||||
<option>six</option>
|
||||
</select>
|
||||
|
||||
<select id="narrow" style="width: 50px;">
|
||||
<option value="evalon">LaClare Farms Evalon with Cummin</option>
|
||||
<option value="savourine">Yarra Valley Vintage Savourine</option>
|
||||
<option value="cheddar">Avonlea Clothbound Cheddar</option>
|
||||
</select>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue