Skip to content
Snippets Groups Projects
Commit 859615ef authored by József Gyürüsi's avatar József Gyürüsi
Browse files

[internal #1848537] Upgrade scripts to use Python3


Change-Id: I8c9e9c0dff81769563dbe15687abaaed3d5ee1e2
Signed-off-by: default avatarJózsef Gyürüsi <jozsef.gyurusi@ericsson.com>
parent 2bf59ee3
No related branches found
No related tags found
No related merge requests found
......@@ -35,9 +35,9 @@ class BaseTestCase(unittest.TestCase):
x = 0
while (x < jsErrorsLength):
if (x == 0):
print '\n*** Test id :', self.id()
print('\n*** Test id :', self.id())
javaScript = "return window.jsErrors[" + str(x) + "] "
print self.driver.execute_script(javaScript) + '\n'
print(self.driver.execute_script(javaScript) + '\n')
x += 1
self.driver.quit()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment