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
Xps88
Posts : 2
Join date : 2012-11-13

[Help] Java input Username field as a timestamp Empty [Help] Java input Username field as a timestamp

Tue Nov 13, 2012 3:40 pm
Hello Seleniumers,

I need some coding help with automation.

I've currently got an automation script to register a new customer on my site, but I want to do this so that the username field is set as a timestamp instead.


Code:
import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
 

 
      public class GetCurrentDateTime {
          public static void main(String[] args) {
       
              DateFormat dateFormat = new SimpleDateFormat("yyyyMMddHH");
             
              //get current date time with Date()
             
              Date date = new Date();
             
              System.out.println(dateFormat.format(date));
       

       
          }
         

Code:
 driver.findElement(By.id("userName")).click();
        driver.findElement(By.id("userName")).clear();
        driver.findElement(By.id("userName")).sendKeys("Tester542");


Thanks

Xps
avatar
tarun3kumar
Master
Master
Posts : 186
Join date : 2012-02-14
http://seleniumtests.com

[Help] Java input Username field as a timestamp Empty Re: [Help] Java input Username field as a timestamp

Wed Nov 14, 2012 12:30 pm
Try this -

Code:

driver.findElement(By.id("userName")).sendKeys(new GregorianCalendar().getTime());
avatar
Xps88
Posts : 2
Join date : 2012-11-13

[Help] Java input Username field as a timestamp Empty Re: [Help] Java input Username field as a timestamp

Wed Nov 14, 2012 3:15 pm
Solved this now

Code:
  DateFormat dateFormat = new SimpleDateFormat("yyyyMMddHH");
      Date date = new Date();
      String FinalDate = dateFormat.format(date);
      System.out.print(FinalDate);
       
        // userName
        driver.findElement(By.id("userName")).click();
        driver.findElement(By.id("userName")).clear();
        driver.findElement(By.id("userName")).sendKeys(FinalDate);
        //userName
       
Sponsored content

[Help] Java input Username field as a timestamp Empty Re: [Help] Java input Username field as a timestamp

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