i would really appreciate some help creating some java script that will eventually be used in Selenium that automatically sets a date 10 days ahead from the current date and displays in the following format dd/mm/yyyy.
i currently have the script below but i'm not getting anywhere with it. The parts in BOLD are what i suspect to be creating the issue.
var myDate=new Date(); myDate.now.format(myDate.setDate(myDate.getDate()+5),("dd/mm/yyyy");
Any help would be much appreciated.
Cheers
Jules