Robotium脚本中的当前日期验证

时间:2014-01-30 08:28:37

标签: java android automation robotium

我需要有关机器人脚本的帮助。我的情况就像“在我的AUT现在日期可用”2014年1月30日“。所以我需要验证它的当前日期。

1 个答案:

答案 0 :(得分:1)

您可以将String解析为Date并将其与今天进行比较,也可以将今天的日期格式化为String并使用可用日期进行检查。以下是使用后一种逻辑如何实现它的示例。

String day = "30 january 2014"; // Available Date
DateFormat df = new SimpleDateFormat("dd MMMM yyyy"); // DateFormat matching your available date
if (df.format(new Date()).equalsIgnoreCase(day)) { // check for equality, ignoring the case
    // It is today's date if the control comes here.
} else {
    // It is not today's date if the control comes here.
}