Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
tammy_hughes
Posts : 3
Join date : 2012-08-06

How to parameterize with "today's date" with IDE Empty How to parameterize with "today's date" with IDE

Mon Aug 06, 2012 8:57 pm
Hello,

Is it possible to use JS to pull in today's date (or today +10 days)? We have been using parametrization successfully, but I'd like to have it execute code to generate those dates vs. modifying the file each time.

Currently, it just pulls in the JS code instead of the code executing and it pulling in the result. Question

Thanks in advance!
Tam
avatar
tarun3kumar
Master
Master
Posts : 186
Join date : 2012-02-14
http://seleniumtests.com

How to parameterize with "today's date" with IDE Empty Re: How to parameterize with "today's date" with IDE

Tue Aug 07, 2012 2:29 pm
You could use java script date object to generate the date -

http://www.w3schools.com/js/js_obj_date.asp

and then type in the generated date in required field.
avatar
tammy_hughes
Posts : 3
Join date : 2012-08-06

How to parameterize with "today's date" with IDE Empty Re: How to parameterize with "today's date" with IDE

Thu Aug 09, 2012 9:04 pm
Thanks Tarun -we were hoping to automate the testing with Selenium - otherwise I can just check a calendar, right? I appreciate the reply though! Smile
sanjeetravi
sanjeetravi
Regular Participant
Regular Participant
Posts : 27
Join date : 2012-07-10
Age : 33
Location : Delhi

How to parameterize with "today's date" with IDE Empty Re: How to parameterize with "today's date" with IDE

Fri Aug 10, 2012 3:16 pm
use this in your selenium rc code
to get current date
String a = selenium.getEval(" ((new Date()).getMonth()+1)+'/'+(new Date()).getDate()+'/'+(new Date()).getFullYear()");

to get current time
String b = selenium.getEval("(new Date().getHours()+" : " + new Date().getMinutes() + " : " + new Date().getSeconds())");
avatar
tammy_hughes
Posts : 3
Join date : 2012-08-06

How to parameterize with "today's date" with IDE Empty Re: How to parameterize with "today's date" with IDE

Fri Aug 10, 2012 11:01 pm
Thanks!
Sponsored content

How to parameterize with "today's date" with IDE Empty Re: How to parameterize with "today's date" with IDE

Back to top
Permissions in this forum:
You cannot reply to topics in this forum