使用 Selenium IDE / javascript 获取下一个日期
Get next Date using Selenium IDE / javascript
如果我使用这个我可以获得当前日期...
command: storeEval
Target: var d=new Date(); ('0' + (d.getMonth()+1)).slice(-2)+'/'+('0' + d.getDate()).slice(-2) + '/' +d.getFullYear()
Value: testdate
实际结果 > 2015 年 5 月 14 日
但我需要下一个日期,但它没有出现我想要的格式。假设今天的日期是 05/14/2015,所以我需要 05/15/2015 的输出。这就是我失败的原因
command: storeEval
Target: var d=new Date(); ('0' + (d.getMonth()+1)).slice(-2)+'/'+(d.setDate(d.getDate() + 1)) + '/' +d.getFullYear()
Value: testdate
实际结果 > 05/1431642394763/2015
预期结果 > 2015 年 5 月 15 日
*此外,我在上面没有提到切片,如果天数为 1-9,我也需要它来工作。
请帮助我在 Selenium IDE 中需要这一步,任何建议。
找到答案于
JavaScript how to get tomorrows date in format dd-mm-yy
command: storeEval
Target: var d= new Date(new Date().getTime() + (86400000 *2)); ('0' + (d.getMonth()+1)).slice(-2)+'/'+('0' + d.getDate()).slice(-2) + '/' +d.getFullYear()
Value: testdate
预期和实际结果 > 2015 年 5 月 16 日
如果我使用这个我可以获得当前日期...
command: storeEval
Target: var d=new Date(); ('0' + (d.getMonth()+1)).slice(-2)+'/'+('0' + d.getDate()).slice(-2) + '/' +d.getFullYear()
Value: testdate
实际结果 > 2015 年 5 月 14 日
但我需要下一个日期,但它没有出现我想要的格式。假设今天的日期是 05/14/2015,所以我需要 05/15/2015 的输出。这就是我失败的原因
command: storeEval
Target: var d=new Date(); ('0' + (d.getMonth()+1)).slice(-2)+'/'+(d.setDate(d.getDate() + 1)) + '/' +d.getFullYear()
Value: testdate
实际结果 > 05/1431642394763/2015
预期结果 > 2015 年 5 月 15 日
*此外,我在上面没有提到切片,如果天数为 1-9,我也需要它来工作。
请帮助我在 Selenium IDE 中需要这一步,任何建议。
找到答案于 JavaScript how to get tomorrows date in format dd-mm-yy
command: storeEval
Target: var d= new Date(new Date().getTime() + (86400000 *2)); ('0' + (d.getMonth()+1)).slice(-2)+'/'+('0' + d.getDate()).slice(-2) + '/' +d.getFullYear()
Value: testdate
预期和实际结果 > 2015 年 5 月 16 日