We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Description
I cannot expect that a string with a dollar sign is visible or not.
Steps To Reproduce
flutter pub global activate fluttium_cli
fluttium new flow foo
- pressOn: "Enter sample data" - expectVisible: "Some-Username" - expectNotVisible: "Example-P@§$w0rd!"
fluttium test .\foo.yaml
Expected Behavior
A passed test. Actual I get a compile error.
Screenshots
Temp/fluttium_b62c6914/lib/fluttium_test_runner.dart:24:60: Error: Undefined name 'w0rd'. UserFlowStep.fromJson({"expectNotVisible":"Example-P@§$w0rd!"}), ^^^^ Failed to compile application.
Additional Context
It is cool that you can click on icons when they have a tooltip.
The text was updated successfully, but these errors were encountered:
My current workaround is to use this \\u0024 as a replacement for the $. Very ugly but it works.
\\u0024
$
Sorry, something went wrong.
Is it possible because the text is converted to Regex? According to the docs, the string can also be regex and '$' is used in regex https://fluttium.dev/docs/actions/built-in/expectations
The compile error shows that the dollar sign is interpreted for embedding a variable. This is nothing about regular expression.
No branches or pull requests
Description
I cannot expect that a string with a dollar sign is visible or not.
Steps To Reproduce
flutter pub global activate fluttium_cli
(on Windows 11 if that matters)fluttium new flow foo
fluttium test .\foo.yaml
Expected Behavior
A passed test. Actual I get a compile error.
Screenshots
Additional Context
It is cool that you can click on icons when they have a tooltip.
The text was updated successfully, but these errors were encountered: