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
Using the class net.serenitybdd.screenplay.ui.Select like
net.serenitybdd.screenplay.ui.Select
actor.attemptsTo(Select.value("foo").from(dropDownLabeled("bar"))); public static SearchableTarget dropDownLabeled(String label) { return XPathOrCssTarget.the("%s-Dropdown".formatted(label)) .locatedBy("//label[@for = '{0}']/select").of(label); }
results in the following report-text User selects [Ljava.lang.String;@74b1accc in bar-Dropdown
User selects [Ljava.lang.String;@74b1accc in bar-Dropdown
the generated report should quote User selects foo in bar-Dropdown.
User selects foo in bar-Dropdown
serenity-screenplay-webdriver 4.1.3
17
No response
Use the class net.serenitybdd.screenplay.ui.Select like
and generate the report.
Work on this myself and propose a PR (with Serenity BDD team guidance)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
Using the class
net.serenitybdd.screenplay.ui.Select
likeresults in the following report-text
User selects [Ljava.lang.String;@74b1accc in bar-Dropdown
What did you expect to happen?
the generated report should quote
User selects foo in bar-Dropdown
.Serenity BDD version
serenity-screenplay-webdriver 4.1.3
JDK version
17
Execution environment
No response
How to reproduce the bug.
Use the class
net.serenitybdd.screenplay.ui.Select
likeand generate the report.
How can we make it happen?
Work on this myself and propose a PR (with Serenity BDD team guidance)
The text was updated successfully, but these errors were encountered: