forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add
locators.html
file in static web pages (SeleniumHQ#14905)
* add locators.html file for docs * remove `action_page.php` --------- Co-authored-by: Sri Harsha <12621691+harsha509@users.noreply.github.com>
- Loading branch information
1 parent
9e25438
commit d91e6c7
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<html> | ||
<body> | ||
<style> | ||
.information { | ||
background-color: white; | ||
color: black; | ||
padding: 10px; | ||
} | ||
</style> | ||
<h2>Contact Selenium</h2> | ||
|
||
<form> | ||
<input type="radio" name="gender" value="m" />Male | ||
<input type="radio" name="gender" value="f" />Female <br> | ||
<br> | ||
<label for="fname">First name:</label><br> | ||
<input class="information" type="text" id="fname" name="fname" value="Jane"><br><br> | ||
<label for="lname">Last name:</label><br> | ||
<input class="information" type="text" id="lname" name="lname" value="Doe"><br><br> | ||
<label for="newsletter">Newsletter:</label> | ||
<input type="checkbox" name="newsletter" value="1" /><br><br> | ||
<input type="submit" value="Submit"> | ||
</form> | ||
|
||
<p>To know more about Selenium, visit the official page | ||
<a href ="https://www.selenium.dev/">Selenium Official Page</a> | ||
</p> | ||
|
||
</body> | ||
</html> |