We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc331b5 commit dd5e791Copy full SHA for dd5e791
1 file changed
src/test/robotframework/series/add-price/logic.robot
@@ -1,6 +1,7 @@
1
*** Settings ***
2
Documentation Verify scenarios of adding a catalog price to a series
3
Library SeleniumLibrary
4
+Library String
5
Resource ../../auth.steps.robot
6
Suite Setup Before Test Suite
7
Suite Teardown Close Browser
@@ -25,7 +26,8 @@ Before Test Suite
25
26
27
Add a price
28
[Arguments] ${catalog} ${price} ${currency}
- Select From List By Value id:price-catalog-name ${catalog}
29
+ ${optionValue}= Convert To Upper Case ${catalog}
30
+ Select From List By Value id:price-catalog-name ${optionValue}
31
Input Text id:catalog-price ${price}
32
Submit Form id:add-catalog-price-form
33
Wait Until Page Does Not Contain id:add-catalog-price-form
0 commit comments