aboutsummaryrefslogtreecommitdiff
path: root/node_modules/selenium-webdriver/lib/test/data/locators_tests/boolean_attribute_selected.html
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/selenium-webdriver/lib/test/data/locators_tests/boolean_attribute_selected.html')
-rw-r--r--node_modules/selenium-webdriver/lib/test/data/locators_tests/boolean_attribute_selected.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/node_modules/selenium-webdriver/lib/test/data/locators_tests/boolean_attribute_selected.html b/node_modules/selenium-webdriver/lib/test/data/locators_tests/boolean_attribute_selected.html
new file mode 100644
index 000000000..42b0442b0
--- /dev/null
+++ b/node_modules/selenium-webdriver/lib/test/data/locators_tests/boolean_attribute_selected.html
@@ -0,0 +1,13 @@
+<html>
+<head>
+ <title>Boolean Attribute Selected</title>
+</head>
+<body>
+<form method="get" action="#" name="myForm">
+ <select name="myDropdown">
+ <option value="one">One</option>
+ <option selected="selected" value="two">Two</option>
+ <option value="four">Four</option>
+ </select>
+</body>
+</html>