Partial Selector matching. #1213
Answered
by
mdmintz
taruntechno
asked this question in
Q&A
-
Hello @mdmintz does sb have support for partial matching of selectors. For eg angular code is genrating id's and name as = _testId_y12ht. So only the testId part stays consistent so can I match partially on that. |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Feb 11, 2022
Replies: 1 comment
-
@taruntechno You can use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@taruntechno You can use
'input[id*="_testId_"]'
for that selector for a partial ID match.