Hello,
I am having a hard time figuring out a way to select a checkbox based on specific value in the same row.
here is an example of what I am trying to achieve.
first I set the variable in Power Automate Desktop to either 1, 2, or 33 in this example. The selector should check the checkbox in the same row as the variable.
If the Variable is set to 33 and the number 33 is in the row select the checkbox in the same row. if the number was changed to 2 or 1 then it should select the checkbox in that row.
This selector selects the checkbox.
frameset[Id="bottom_frame"] > frame[Src="Redacted"] input[Id="selectRow"]
This selector selects the Number.
frameset[Id="bottom_frame"] > frame[Src="Redacted"] table[Id="unique_id"] > tbody > tr > td[Text="33"]
I just need help combining these or understanding how to make the selector only select the checkbox containing specific text value in the [Text="33"]. the end goal is to replace the number 33 in [Text="33"] with a variable that way it can check the checkbox with the correct number.