仅获取某些文本

时间:2016-03-04 06:16:06

标签: selenium-webdriver

我正在使用谷歌地图api,

我从前端提供经度和纬度,我需要断言的是,地图显示指定经度和纬度。

以下是来自src = http://maps.googleapis.com/maps/api/staticmap?center=22.396428,114.109497&markers=22.396428,114.109497&zoom=18&size=544x362&sensor=false

的文字

我想声明'22 .396428,114.109497'文字包含在指定的网址中, 我能做到这一点。

谢谢

1 个答案:

答案 0 :(得分:0)

This an example of how you'd do that with Hamcrest.

MatcherAssert.assertThat(driver.getCurrentUrl(),
                         Matchers.containsString("22.396428,114.109497"));