Selenium findElement不适用于谷歌地图

时间:2016-01-22 06:06:11

标签: javascript google-maps selenium cucumber

无法在Google地图中找到元素。

<g-map id="map-contain" style="position: relative; overflow: hidden; transform: translateZ(0px); background-color: rgb(229, 227, 223);">
    <div class="gm-style" style="position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0;">
        :::::
        ::::::
        ::::::
    </div>
<g-map>

我尝试用这个没有运气来选择带有'gm-style'

类的div
this.driver.findElement(By.xpath('//div[@class="gm-style"]'));

如何在g-map标签内获取元素?

1 个答案:

答案 0 :(得分:1)

我会尝试通过id匹配外部g-map标签并获取其子项。 Ids应该是唯一的,而类大多数不是