Strip the dollar sign from variable1:
storeEval | storedVars['variable1'].replace(/\$/g,'') | dx |
Strip the comma from 'dx' (created when stripping the dollar sign in previous step):
storeEval | storedVars['dx'].replace(/\,/g,'') | x |
Verify that 'x' is greater than 'y'
verifyEval | storedVars['x'] > storedVars['y'] | true |