#{selenium 'Test the @Before'}
open('@{Application.escapeData()}')
// Check default (escaped) selenium atom replace   to ' '
assertText('default', '${' ;Yop ;'.escape()}')
// Check raw
assertNotText('raw', '${' ;Yop ;'.escape()}')
assertNotText('raw', '${''.escape()}')
assertTextLike('raw', 'Yop')
// Check verbatim
assertNotText('verbatim', '${' ;Yop ;'.escape()}')
assertNotText('verbatim', '${''.escape()}')
assertTextLike('verbatim', 'Yop')
// Check default again (escaped)
assertText('defaultAgain', '${' ;Yop ;'.escape()}')
#{/selenium}