SeleniumBase/examples/ip_cow_test.py

14 lines
362 B
Python
Executable File

import time
from seleniumbase import BaseCase
class MyTestClass(BaseCase):
def test_ip_cow(self):
self.open('https://www.ipcow.com/')
ip_data = self.get_text("form table")
print("\n\n*** IP and Browser Data: ***")
print(ip_data)
print("\nThe browser will close automatically in 7 seconds...")
time.sleep(7)