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 fa69772 commit f472d9eCopy full SHA for f472d9e
integrations/selenium_ide/convert_ide.py
@@ -1,5 +1,6 @@
1
"""
2
-Converts a Selenium IDE WebDriver-exported test file into a SeleniumBase file
+Converts a Selenium IDE WebDriver-exported test file into a SeleniumBase file.
3
+Works with Katalon Recorder scripts: http://www.katalon.com/automation-recorder
4
5
Usage:
6
python convert_ide.py [MY_TEST.py]
@@ -437,7 +438,7 @@ def main():
437
438
if 'self.base_url' in line:
439
line = line.replace("self.base_url", '"%s"' % ide_base_url)
440
- # Convert driver. to self.driver. if not already done
441
+ # Convert "driver." to "self.driver." if not already done
442
if 'driver.' in line and 'self.driver' not in line:
443
line = line.replace('driver.', 'self.driver.')
444
0 commit comments