Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
telecom
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
Roque
telecom
Commits
0bc99ce7
Commit
0bc99ce7
authored
Nov 30, 2017
by
Roque Porchetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scalaiblity_test: refactoring createSaleOrder test
parent
07015294
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
scalability_test/examples/createSaleOrder.py
scalability_test/examples/createSaleOrder.py
+7
-4
No files found.
scalability_test/examples/createSaleOrder.py
View file @
0bc99ce7
...
...
@@ -122,6 +122,8 @@ def createSaleOrder(result, browser):
assert
browser
.
getTransitionMessage
()
==
'Data updated.'
sale_order_url
=
browser
.
url
# Go back to the Person page before validating
browser
.
open
(
sale_order_url
)
# test
## Set Sale Trade conditions
# Click on the specified menu
...
...
@@ -136,11 +138,12 @@ def createSaleOrder(result, browser):
# sleep=(TMIN_SLEEP, TMAX_SLEEP)))
# Add Sale order lines
max_ite
=
random
.
randint
(
1
,
MAX_PRODUCT
)
for
i
in
range
(
0
,
max_ite
):
browser
.
open
(
sale_order_url
+
"/view"
)
addOrderLine
(
browser
,
my_title
,
result
)
#
max_ite = random.randint(1,MAX_PRODUCT)
#
for i in range (0, max_ite):
#
browser.open(sale_order_url+"/view")
#
addOrderLine(browser, my_title, result)
addOrderLine
(
browser
,
my_title
,
result
)
browser
.
open
(
my_order_sale_url
)
# Validate the Sale Order
...
...
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