We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b0e80a commit 573be0bCopy full SHA for 573be0b
examples/ip_cow_test.py
@@ -0,0 +1,13 @@
1
+import time
2
+from seleniumbase import BaseCase
3
+
4
5
+class MyTestClass(BaseCase):
6
7
+ def test_ip_cow(self):
8
+ self.open('https://www.ipcow.com/')
9
+ ip_data = self.get_text("form table")
10
+ print("\n\n*** IP and Browser Data: ***")
11
+ print(ip_data)
12
+ print("\nThe browser will close automatically in 7 seconds...")
13
+ time.sleep(7)
0 commit comments