Skip to content

Commit

Permalink
add locators.html file in static web pages (#14905)
Browse files Browse the repository at this point in the history
* add locators.html file for docs

* remove `action_page.php`

---------

Co-authored-by: Sri Harsha <[email protected]>
  • Loading branch information
navin772 and harsha509 authored Dec 23, 2024
1 parent cc5ca35 commit 5cc56b0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions common/src/web/locators_tests/locators.html
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 &nbsp;
<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>

0 comments on commit 5cc56b0

Please sign in to comment.