How i put this format in a variable

Hello guys i want to put this format in a variable before the selector have to read but i have to put in a variable this format in the selector
image

I have to compare this amount with my queue, this amount is a salector in table but i have to put in a variable with the same format

@VAZQUEZ_SOSA_LUIS_ALBERTO

You can create one string variable and pass the above mentioned value.

Hi @VAZQUEZ_SOSA_LUIS_ALBERTO ,

If you are worried about the text not being an exact match, then you don’t have to worry too much about it.

You have the option of tweaking the percentage to which a selector should match a given UI Element, and that option is called Fuzzy Search.

Now what does all of this mean?
It means, you don’t have to worry about the string format, as long as more than 80% of the string matches the expected output.

Try playing around with it first, just to get a feel for it and then try to apply it to your usecase.

You can read more on this by visiting the link provided below →

Kind Regards,
Ashwin A.K

@VAZQUEZ_SOSA_LUIS_ALBERTO,

Put this amount in a variable called myVar

Then get the selector, and in the attribute that indicates the amount put it the variable you created.

For example attribute = ‘{{myVar}}’

In case your variable doesnt contain $, in selector put this ‘?{{myVar}}’

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.