You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thank you for the issue. I'm working on improvements for code completion, this issue will be fixed there. I think that may be in a one or two weeks it should be available.
Create a step separated on a few lines, e.g.
@given("I go to the page $page to validate " +
"name $name " +
"email $email " +
"department $department")
public void test(String name, String email, String department) {
// test something
}
Go to the story file and try to use this step:
Try to add it via the autosuggestion
ACTUAL RESULT
From screenshot you can see that plugin recognizes step incorrectly
EXPECTED RESULT:
Step must be recognized as:
Given I go to the page $page to validate name $name email $email department $department
The text was updated successfully, but these errors were encountered: