Validating portion(s) of a dynamic text using assertVisible #1660
Answered
by
simon-gilmurray
rbenitezpagan
asked this question in
Q&A
-
ProblemI am having problems successfully validating a dynamic text (or portions of it). QuestionIs it possible to validate a dynamic text if I split the validations? Input
Flow
Outputs
|
Beta Was this translation helpful? Give feedback.
Answered by
simon-gilmurray
Jan 26, 2024
Replies: 1 comment 1 reply
-
You're currently checking for a full string to match, and as that doesn't exist it's failing. You can use regex to check partials, e.g.
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rbenitezpagan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're currently checking for a full string to match, and as that doesn't exist it's failing.
You can use regex to check partials, e.g.