I am very new to Cucumber.
I know (and I use it a lot) that cucumber steps may have parameters in double quotes, like the one below:
And Choose "Ice Cream" from list to add to Order
# or
And User fills in "'<'Name'>'" and "'<'Surname'>'" in the form
Examples: TestData
| Name | Surname |
| Michael | Good |
However, I noticed that there can be steps with a parameters in a single quotes like:
And User click 'Create Order' button
# or
And 'Brush Type' displayed on 'View Order' page
I looked into steps, test definitions, page object definitions for the steps described and I can not understand what is the purpose of single quotes.
There would be no difference should it be like:
And Brush Type displayed on View Order page
Could somebody give me a brief answer, please.
Or send me a link where I can read, please.