Basically, I want to do some web testing through Robot Framework. However, I would like to have the user change the variables without needing to edit the .robot file.
Here is part of what I will be using:
`*** Settings ***
Library Selenium2Library`
`*** Variables ***
${HOMEPAGE} http://"website-name"/
${BROWSER} Chrome
${USERNAME} *****
${PASSWORD} *****
${DELAY} 10
${LOGIN} link=LOGIN`
I would like for the user to be able to change certain variables such as ${USERNAME} or ${PASSWORD} through a front end landing page that I've set up. I will get these data in PHP via a form that they will enter.
The only problem is, I still have no idea how to inject these variables into my .robot file.