Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamic locator #649

Open
adrian2096 opened this issue Jun 21, 2024 · 2 comments
Open

Dynamic locator #649

adrian2096 opened this issue Jun 21, 2024 · 2 comments

Comments

@adrian2096
Copy link

hi, im trying to make a dynamic locators like this

data/locators.yaml

DobleValue:
  newValue: {xpath: "//td[contains(@title,'${value}')]"}

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!

@adrianth
Copy link
Contributor

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:

- script: |
     var locator = $data("data/locators").DobleValue.newValue
     locator.xpath = locator.xpath.replace("${value}",$macroArgs.plan)
     
     $runMacro("macro", {
       locator: locator 
     });

@adrian2096
Copy link
Author

it works, thanks for the help

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants