Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sebastian
erp5
Commits
007faf50
Commit
007faf50
authored
Dec 19, 2013
by
Aurel
Committed by
Gabriel Monnerat
Dec 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
traverse when not http
parent
12e969e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
bt5/erp5_ui_test_core/SkinTemplateItem/portal_skins/erp5_ui_test_core/Zuite_runSeleniumTest.xml
.../portal_skins/erp5_ui_test_core/Zuite_runSeleniumTest.xml
+7
-1
bt5/erp5_ui_test_core/bt/revision
bt5/erp5_ui_test_core/bt/revision
+1
-1
No files found.
bt5/erp5_ui_test_core/SkinTemplateItem/portal_skins/erp5_ui_test_core/Zuite_runSeleniumTest.xml
View file @
007faf50
...
...
@@ -56,9 +56,15 @@
"""\n
test_list = []\n
count = 0\n
portal = context.getPortalObject()\n
for url in url_list:\n
count += 1\n
test_list.append((context.Zuite_urlRead(url, safe_return=1), \'%s %s\' % (count, url)),)\n
if "http" not in url:\n
# local content\n
data = portal.restrictedTraverse(url).TestPage_viewSeleniumTest()\n
else:\n
data = context.Zuite_urlRead(url, safe_return=1)\n
test_list.append((data, \'%s %s\' % (count, url)),)\n
\n
return context.Zuite_createAndLaunchSeleniumTest(test_list=test_list,\n
zuite_id=zuite_id)\n
...
...
bt5/erp5_ui_test_core/bt/revision
View file @
007faf50
66
\ No newline at end of file
67
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment