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
In v1.5.1, passing a string flag without a value results in an invalid argument that ends with an equal sign. For example:
K6_BROWSER_ARGS=disable-site-isolation-trials
Produces the following argument that we pass while launching the browser:
disable-site-isolation-trials=
It should be:
disable-site-isolation-trials
Having a superfluous suffix (=) prevents browsers (e.g., Chrome) from interpreting the argument, making the argument defunct.
=
Handle the argument correctly here.
The content you are editing has changed. Please copy your edits and refresh the page.
No response
The text was updated successfully, but these errors were encountered:
inancgumus
No branches or pull requests
What?
In v1.5.1, passing a string flag without a value results in an invalid argument that ends with an equal sign. For example:
Produces the following argument that we pass while launching the browser:
It should be:
Why?
Having a superfluous suffix (
=
) prevents browsers (e.g., Chrome) from interpreting the argument, making the argument defunct.How?
Handle the argument correctly here.
Tasks
Tasks
Related PR(s)/Issue(s)
No response
The text was updated successfully, but these errors were encountered: