Links

DDT - Oxygen Framework

In order to replace a constant value with a test parameter in Oxygen Framework, you should prefix your parameter's name with ${ signs and suffix it with } sign.
For example, if your parameter name is “userName” and the value is “User123”, the following example will perform type action in your Oxygen script and will replace "userName" parameter with "User123" value:
web.type(“id=username”, “${userName}“);
CloudBeat's runner will automatically bind the test data defined in Parameters tab of your Test Case or Test Suite and will pass it on to the underlying Oxygen framework. Additionally, Environment variables will be merged with your test parameters and both will be accessible through ${<environment variable / test parameter name} syntax.
Note: your Environment variables will be overridden by your Test Parameters with the same name.