Skip to content

Commit b2c39ef

Browse files
committed
Add a test that uses the HTML-Inspector
1 parent 3f410ec commit b2c39ef

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

examples/test_inspect_html.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"""
2+
Uses the SeleniumBase implementation of HTML-Inspector to inspect the HTML.
3+
See https://github.com/philipwalton/html-inspector for more details.
4+
"""
5+
6+
from seleniumbase import BaseCase
7+
8+
9+
class MyTestClass(BaseCase):
10+
11+
def test_html_inspector(self):
12+
self.open("https://xkcd.com/1144/")
13+
self.inspect_html()

0 commit comments

Comments
 (0)