Skip to content
Snippets Groups Projects
Commit a6abde71 authored by Lenard Nagy's avatar Lenard Nagy Committed by Gerrit Code Review @ Eclipse.org
Browse files

Merge "[internal #1848537] Upgrade scripts to use Python3"

parents 6cbb1ad9 859615ef
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