我在下面的代码中苦苦挣扎。在网页中,一些文档显示在网格中。我选择第一行,然后我想检查它是否按照标准显示日期和时间格式。
DateFormat dateFormat = new SimpleDateFormat("mm/dd/yyyy hh:mm:ss aa");
Date date = new Date();
String newDate = dateFormat.format(date);
// This xpath for selecting first row on the grid
if(!selenium.getText("//*@id='gbs_evo_grid__TreeView_1']/div/div/div/div[1]/table/tbody/tr/td[3]").equals(newDate))
{
SeleneseTestBase.fail("The Date format is not correct");
}
你能帮我看看上面的代码是否正确,或者你能提供替代代码吗?