What is the correct way to use @ParameterType in Cucumber in Java binding #2229
Unanswered
elysium306
asked this question in
Q&A Java
Replies: 1 comment 2 replies
-
At a glance it looks like the class your parameter type definition is declared in is not on the glue path. For a quick test put it in the same class as your step definitions. If that doesn't help, please fork https://github.com/cucumber/cucumber-java-skeleton and show your problem there. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I am trying to define a customer param for some special case
I remember we used to be able to define inline parameters, like
Given some action
| action1 |
| action2 |
| action3|
When do something else
Then get some result
and it seems like it have been removed, or replaced with current DataTable dataTable ( I admit it's so powerful, we can do amazing things with it)
in my case, I am trying to escape something range of numbers, and I don't want to treat it like argument as well
for better readability, I want to display those numbers just like regular text that is displayed on the console, long story short
'''
'''
if someone who's familiar with this can give me some tips, would be greatly appreciated!
Thank you guys!! lots of love!
Beta Was this translation helpful? Give feedback.
All reactions