You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the newValue locator is in the data/locators.yaml and im trying to use javascript to replace the '${value}' with a value that i send as a parameter, i try it to use like this but is not working, is there anyway how to make what i want?
- script: |
var locatorString = $data("data/locators").DobleValue.newValue
var newLocator = locatorString.replace("${plan}",$macroArgs.plan)
$runMacro("macro", {
locator: newLocator
});
Thank you!
The text was updated successfully, but these errors were encountered:
The error you have in there is that $data("data/locators").DobleValue.newValue is a JavaScript object, not a string, so you cannot use the replace method on it. You need to do the replace on the xpath property instead:
hi, im trying to make a dynamic locators like this
data/locators.yaml
the newValue locator is in the data/locators.yaml and im trying to use javascript to replace the '${value}' with a value that i send as a parameter, i try it to use like this but is not working, is there anyway how to make what i want?
Thank you!
The text was updated successfully, but these errors were encountered: