Skip to content

Commit 7a243b0

Browse files
committed
Update a few comments
1 parent 17cd8a6 commit 7a243b0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

examples/my_first_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class MyTestClass(BaseCase):
55

66
def test_basic(self):
7-
self.open('https://xkcd.com/353/') # Navigate to the web page
7+
self.open('https://xkcd.com/353/') # Navigate to the web page
88
self.assert_element('img[alt="Python"]') # Assert element on page
99
self.click('a[rel="license"]') # Click element on page
1010
self.assert_text('free to copy', 'div center') # Assert text on page

examples/tour_examples/xkcd_tour.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@ def test_basic(self):
1717
self.add_tour_step("Click for the license here.", 'a[rel="license"]')
1818
self.add_tour_step("This selects a random comic.", 'a[href*="random"]')
1919
self.add_tour_step("Thanks for taking this tour!")
20-
# self.export_tour() # Use this to export the tour as a .js file
20+
# self.export_tour() # Use this to export the tour as [my_tour.js]
2121
self.play_tour()
22-

seleniumbase/config/proxy_list.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
Example proxies in PROXY_LIST below are not guaranteed to be active or secure.
1616
If you don't already have a proxy server to connect to,
1717
you can try finding one from one of following sites:
18+
* https://www.proxynova.com/proxy-server-list/port-8080/
1819
* https://www.us-proxy.org/
1920
* https://hidemy.name/en/proxy-list/?country=US&type=h#list
2021
* http://proxyservers.pro/proxy/list/protocol/http/country/US/
2122
"""
2223

2324
PROXY_LIST = {
24-
# "example1": "64.33.247.157:3128", # (Example) - set your own proxy here
25+
"example1": "104.248.122.30:8080", # (Example) - set your own proxy here
2526
"proxy1": None,
2627
"proxy2": None,
2728
"proxy3": None,

seleniumbase/utilities/selenium_ide/convert_ide.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ def main():
636636
for line in seleniumbase_lines:
637637
seleniumbase_code += line
638638
seleniumbase_code += "\n"
639-
# print seleniumbase_code # (For debugging)
639+
# print(seleniumbase_code) # (For debugging)
640640

641641
# Create SeleniumBase test file
642642
base_file_name = webdriver_python_file.split('.py')[0]

0 commit comments

Comments
 (0)