在文本字段中输入明天的日期

enter tomorrows date in the text field

我需要在日期文本字段中输入明天的日期,但我下面的脚本输入的是今天的日期。你能看看代码,让我知道我错过了什么吗?谢谢!

我的脚本:

public void setThePuaseRemoveTheStartDate() {
Date dt = new Date();

Calendar calendar = Calendar.getInstance();
calendar.setTime(dt);
calendar.add(Calendar.DATE, 1);
dt = calendar.getTime();


String todaysDate = new SimpleDateFormat("MM/dd/yyyy").format(new Date());
todaysDate.equals(dt);

//enter tomorrow's date in the Pause field
WebElement tomDate = driver.findElement(By.xpath(".//*[@id='in']"));
tomDate.sendKeys(todaysDate);

}

我认为这里有一个错误:String todaysDate = new SimpleDateFormat("MM/dd/yyyy").format(new Date());,不应该是 String todaysDate = new SimpleDateFormat("MM/dd/yyyy").format(dt); 吗?