I am trying to input a value to a text field using fitnesse for appian with ruby functions. I have a cucumber scenario:
Feature: create a quick decision
Scenario Outline: decision
When I populate the "Decision Title" field with <decTitle>
Examples:
| role | decTitle |
| "test" | "testinput "user1" titlepart2" |
it is imperative that I am able to input a value with quotes in to this field as well as select from a dropdown menu.
I have tried to escape the quotes by using the following:
triple quote on on same and multi line """ foo "and" bar """
" for both the starting and inner quotes "foo "and" bar" "foo "and" bar"
double quotes within and out side "foo ""and"" bar"
all result in the same "step is undefined" error when running the test case any and all help would be appreciated.