- ArchanaRegular Participant
- Posts : 33
Join date : 2009-08-21
testing form submission with current time input
Fri Aug 21, 2009 7:35 pm
Hi,
I am using Selenium IDE but couldn't use Selenium RC. when I extract zipfile which I downloaded from http://seleniumhq.org/download/, its giving an error after 80% extraction it seems. That might be a problem.
What I want to ask is in my form whenever I run test, it should enter (current time+10sec) in some field, how can I do this, should I handle any js code? Requirement is if time is less than current time, form should not be submitted. and what's the use of selenium IDE html format, I don't know about this. I'm just using Selenium-RC php format. Can anyone help?
I am using Selenium IDE but couldn't use Selenium RC. when I extract zipfile which I downloaded from http://seleniumhq.org/download/, its giving an error after 80% extraction it seems. That might be a problem.
What I want to ask is in my form whenever I run test, it should enter (current time+10sec) in some field, how can I do this, should I handle any js code? Requirement is if time is less than current time, form should not be submitted. and what's the use of selenium IDE html format, I don't know about this. I'm just using Selenium-RC php format. Can anyone help?
Re: testing form submission with current time input
Sat Aug 22, 2009 11:31 am
hi,
Use the following command in your selenium IDE
store | javascript{(new Date().getHours()+" : " + new Date().getMinutes() + " : " + new Date().getSeconds())} | variableName
type| locatorOfElementInWhichYouWantToEnter | ${variableName}
Best of luck.
Bye
Use the following command in your selenium IDE
store | javascript{(new Date().getHours()+" : " + new Date().getMinutes() + " : " + new Date().getSeconds())} | variableName
type| locatorOfElementInWhichYouWantToEnter | ${variableName}
Best of luck.
Bye
- ArchanaRegular Participant
- Posts : 33
Join date : 2009-08-21
Re: testing form submission with current time input
Sat Aug 22, 2009 2:28 pm
Thanks, Its working. .
Also I have a date field with a calendar icon beside. There links for previous dates are disabled. Through testing, how can I check whether calendar is loaded correctly or not? (I mean prev dates are disabled or not). Automated test should click on calendar icon & select current date & submit my form. Can we do it?
Also I have a date field with a calendar icon beside. There links for previous dates are disabled. Through testing, how can I check whether calendar is loaded correctly or not? (I mean prev dates are disabled or not). Automated test should click on calendar icon & select current date & submit my form. Can we do it?
Permissions in this forum:
You cannot reply to topics in this forum