I can get the current date if I use this...
command: storeEval
Target: var d=new Date(); ('0' + (d.getMonth()+1)).slice(-2)+'/'+('0' + d.getDate()).slice(-2) + '/' +d.getFullYear()
Value: testdate
Actual Result > 05/14/2015
BUT I need the next date and it is not appearing the format that I wanted. Let say today's date is 05/14/2015, so I need an output of 05/15/2015. This is what I have as failing
command: storeEval
Target: var d=new Date(); ('0' + (d.getMonth()+1)).slice(-2)+'/'+(d.setDate(d.getDate() + 1)) + '/' +d.getFullYear()
Value: testdate
Actual Result > 05/1431642394763/2015
Expected Result > 05/15/2015
*Also above I didn't mention about the slice, I need that to work as well if the days go to 1-9.
Please help I need this step in Selenium IDE, any suggestions.