-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬇️ Test to make sure hidden dropdown elements are not being tagged (#141
) * ⬇️ Test to make sure hidden dropdown elements are not being tagged * ⬇️ Added testing against page_text * ⬇️ reformat * ⬇️ test individual characters for expected_tag_string * add test to make sure hidden dropdown elements are not present in page_text * rm print * 🖼️ reformat
- Loading branch information
1 parent
2bd13f9
commit e7e2ab6
Showing
2 changed files
with
47 additions
and
1 deletion.
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,17 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Title</title> | ||
</head> | ||
<body> | ||
<label> | ||
<select style="font-size: xx-large"> | ||
<option value="option1">Option 1</option> | ||
<option value="option2">Option 2</option> | ||
<option value="option3">Option 3</option> | ||
<option value="option4">Option 4</option> | ||
</select> | ||
</label> | ||
</body> | ||
</html> |
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