Thanks a lot Anne and Tatu for you prompt replies,
My question is, does the value of the variable "
SIGNAL_LEVEL_THRESHOLD" passed from command line override the values defined in the
Robot framework code (wifi_testing.robot) (ie., ${SIGNAL_LEVEL_THRESHOLD} -90)
How can I add the print for variable "SIGNAL_LEVEL_THRESHOLD" in the wifi_testing.robot, so that I can run and verify on the console of the board?
python3 -m robot --variable SIGNAL_LEVEL_THRESHOLD:-60 wifi_testing.robot
Robot framework code (wifi_testing.robot):
*** Variables ***
${SIGNAL_LEVEL_THRESHOLD} -90
*** Test Cases ***
Check for Wi-Fi Signal Strength with Threshold
${link} ${level} ${noise} = Get Wifi Signal Quality
Should Be True ${level} >= ${SIGNAL_LEVEL_THRESHOLD}
Many Thanks in advance,
Srini