Skip to content

Commit f472d9e

Browse files
committed
Update a couple comments
1 parent fa69772 commit f472d9e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

integrations/selenium_ide/convert_ide.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""
2-
Converts a Selenium IDE WebDriver-exported test file into a SeleniumBase file
2+
Converts a Selenium IDE WebDriver-exported test file into a SeleniumBase file.
3+
Works with Katalon Recorder scripts: http://www.katalon.com/automation-recorder
34
45
Usage:
56
python convert_ide.py [MY_TEST.py]
@@ -437,7 +438,7 @@ def main():
437438
if 'self.base_url' in line:
438439
line = line.replace("self.base_url", '"%s"' % ide_base_url)
439440

440-
# Convert driver. to self.driver. if not already done
441+
# Convert "driver." to "self.driver." if not already done
441442
if 'driver.' in line and 'self.driver' not in line:
442443
line = line.replace('driver.', 'self.driver.')
443444

0 commit comments

Comments
 (0)