Skip to content

Commit

Permalink
fix the typo (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
alincode committed Mar 18, 2021
1 parent 40e213f commit 7e47b00
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions source/locating-elements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ For instance, consider this page source::
<input name="continue" type="submit" value="Login" />
</form>
</body>
<html>
</html>

The form element can be located like this::

Expand All @@ -99,7 +99,7 @@ For instance, consider this page source::
<input name="continue" type="button" value="Clear" />
</form>
</body>
<html>
</html>

The username & password elements can be located like this::

Expand Down Expand Up @@ -144,7 +144,7 @@ For instance, consider this page source::
<input name="continue" type="button" value="Clear" />
</form>
</body>
<html>
</html>

The form elements can be located like this::

Expand Down Expand Up @@ -220,7 +220,7 @@ For instance, consider this page source::
<a href="continue.html">Continue</a>
<a href="cancel.html">Cancel</a>
</body>
<html>
</html>

The continue.html link can be located like this::

Expand All @@ -242,7 +242,7 @@ For instance, consider this page source::
<h1>Welcome</h1>
<p>Site content goes here.</p>
</body>
<html>
</html>

The heading (h1) element can be located like this::

Expand All @@ -263,7 +263,7 @@ For instance, consider this page source::
<body>
<p class="content">Site content goes here.</p>
</body>
<html>
</html>

The "p" element can be located like this::

Expand All @@ -284,7 +284,7 @@ For instance, consider this page source::
<body>
<p class="content">Site content goes here.</p>
</body>
<html>
</html>

The "p" element can be located like this::

Expand Down

0 comments on commit 7e47b00

Please sign in to comment.