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 2cbeb72 commit 35e2215Copy full SHA for 35e2215
examples/proxy_bing_test.py
@@ -0,0 +1,12 @@
1
+import time
2
+from seleniumbase import BaseCase
3
+
4
5
+class MyTestClass(BaseCase):
6
7
+ def test_proxy_on_bing(self):
8
+ self.open('https://www.bing.com/search?q=what+is+my+ip')
9
+ ip_address = self.get_text("#b_results li.b_top")
10
+ print("\n\n%s\n" % ip_address)
11
+ print("\nThe browser will close automatically in 7 seconds...")
12
+ time.sleep(7)
0 commit comments