Commit 0bc99ce7 authored by Roque Porchetto's avatar Roque Porchetto

scalaiblity_test: refactoring createSaleOrder test

parent 07015294
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment