如何使用Selenium webdriver

时间:2016-02-03 00:12:20

标签: selenium-webdriver

我从应用程序中检索上次更新时间的文本值。

输出如下:

03/02/2016 5:40:78

时间在动态变化。通过使用"获取文本"我检索上次更新的时间并输出到控制台。

我想分割数据。

1 个答案:

答案 0 :(得分:0)

Use split function to achieve same. As you can observe there is a space between your Date and Time

String[] DateTime = driver.findElement(By.xpath("Your Locator")).getText().split(" ");

String Date = DateTime[0];
String Time = DateTime[1];
System.out.println(Date);
System.out.println(Time);