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
156e3afa
Commit
156e3afa
authored
Nov 30, 2017
by
Roque Porchetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scalaiblity_test: refactoring createSaleOrder test
parent
64a910df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
scalability_test/examples/createSaleOrder.py
scalability_test/examples/createSaleOrder.py
+8
-8
No files found.
scalability_test/examples/createSaleOrder.py
View file @
156e3afa
...
@@ -185,7 +185,7 @@ def createSaleOrder(result, browser):
...
@@ -185,7 +185,7 @@ def createSaleOrder(result, browser):
assert
browser
.
getTransitionMessage
()
==
'Data updated.'
assert
browser
.
getTransitionMessage
()
==
'Data updated.'
sale_order_url
=
browser
.
url
sale_order_url
=
browser
.
url
# Go back to the
Person page before validating
# Go back to the
sale order page
browser
.
open
(
sale_order_url
)
# test
browser
.
open
(
sale_order_url
)
# test
## Set Sale Trade conditions
## Set Sale Trade conditions
...
@@ -200,17 +200,17 @@ def createSaleOrder(result, browser):
...
@@ -200,17 +200,17 @@ def createSaleOrder(result, browser):
# browser.mainForm.submit(name='Base_callDialogMethod:method',
# browser.mainForm.submit(name='Base_callDialogMethod:method',
# sleep=(TMIN_SLEEP, TMAX_SLEEP)))
# sleep=(TMIN_SLEEP, TMAX_SLEEP)))
#
Add Sale order lines
#Add Sale order lines
#
max_ite = random.randint(1,MAX_PRODUCT)
max_ite
=
random
.
randint
(
1
,
MAX_PRODUCT
)
#
for i in range (0, max_ite):
for
i
in
range
(
0
,
max_ite
):
#
browser.open(sale_order_url+"/view")
browser
.
open
(
sale_order_url
+
"/view"
)
#
addOrderLine(browser, my_title, result)
addOrderLine
(
browser
,
my_title
,
result
)
addOrderLine
(
browser
,
my_title
,
result
)
browser
.
open
(
my_order_sale_url
)
browser
.
open
(
my_order_sale_url
)
# Validate the Sale Order
# Validate the Sale Order
browser
.
mainForm
.
submitSelectWorkflow
(
value
=
'plan_action'
)
browser
.
mainForm
.
submitSelectWorkflow
(
value
=
'plan_action'
)
result
(
'Validate'
,
#result('Validate',
result
(
'Cancel'
,
browser
.
mainForm
.
submitDialogConfirm
(
sleep
=
(
TMIN_SLEEP
,
TMAX_SLEEP
)))
browser
.
mainForm
.
submitDialogConfirm
(
sleep
=
(
TMIN_SLEEP
,
TMAX_SLEEP
)))
assert
browser
.
getTransitionMessage
()
==
'Status changed.'
assert
browser
.
getTransitionMessage
()
==
'Status changed.'
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