Нужна помощь в получении выражения XPath для span внутри всплывающего окна Iframe - PullRequest
6 голосов
/ 28 октября 2011

Необходимо получить выражение xpath для диапазона внутри iframe.Нужна помощь в получении выражения XPath для span во всплывающем окне Iframe.

Я могу получить iframe, но получение / html / body внутри iframe не происходит, любая помощь приветствуется

<div class="gwt-PopupPanelGlass" style="position: absolute; left: 0px; top: 0px; visibility: visible; display: block; width: 1680px; height: 222px;"></div>
<div class="gwt-PopupPanel" style="left: 439px; top: 0px; visibility: visible; position: absolute; overflow: visible;">
<div class="popupContent">
<div class="ph-PopupDialog" style="position: relative; width: 800px; height: 220px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex;">&nbsp;</div>
<div style="position: absolute; overflow: hidden; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex;">&nbsp;</div>
<div style="position: absolute; overflow: hidden; left: 0px; top: 0px; right: 0px; height: 32px;">
<div style="position: absolute; overflow: hidden; left: 0px; top: 32px; right: 0px; bottom: 0px;">
<div class="ph-PopupDialog-content" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex;">&nbsp;</div>
<div style="position: absolute; overflow: hidden; left: 5px; top: 5px; right: 5px; bottom: 5px;">
<div style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div>
<iframe class="gwt-Frame ph-PaymentFrame" name="paymentFrame" src="javascript:''">
<html>
<head>
<body onload="pageLoaded();">
<div class="ph-View">
<div class="container_24 form-grid">
<div class="container_24 form-grid">
<div class="container_24 form-grid">
<div class="container_24 form-grid">
<div class="container_24 form-grid">
<div class="grid_12">
<div class="ph-ButtonPanel ph-ButtonPanel-undecorated">
<a class="ph-Button ph-Button-button" onclick="submit();return false;" style="float: right; margin-left: 5px;" href="#">
<a class="ph-Button ph-Button-button" onclick="cancel();return false;" style="float: right; margin-left: 5px;" href="#">
<span>Cancel</span>
</a>
</div>
</div>
</div>
</div>
</body>

`

Ответы [ 5 ]

8 голосов
/ 29 сентября 2012

Элементы в iframe фактически находятся на другой странице.поэтому сначала вы должны найти адрес этой страницы, который является значением src для iframe, и загрузить его, а затем получить доступ к элементу на этой странице.

5 голосов
/ 13 апреля 2013

Необходимо установить область действия xpath для свойства contentDocument в iframe:

var iframe = document.getElementsByTagName("iframe")[0];
var theFirstSpan = document.evaluate('//span', iframe.contentDocument,
         null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue
1 голос
/ 28 октября 2011

Использование :

//iframe//span

Выбирает каждый элемент span, являющийся потомком любого элемента iframe в документе XML.

0 голосов
/ 05 мая 2015

Мы не можем получить доступ к элементам внутри iframe напрямую.Сначала нужно переключиться на iframe.

Я использую PHP Facebook WebDriver, и это прекрасно работает для меня.

$driver->get("http://www.example.com"); // containing an iframe
$iFrame = $driver->findElement(
            WebDriverBy::xpath('//iframe[@name="iFrameName"]') //name or id or whatever by which we can access.
        );
$driver->switchTo()->frame($iFrame);

Теперь мы можем получить доступ к span as,

$spanButton = $driver->findElement(
            WebDriverBy::xpath('//span') 
        );

Надеюсь, это кому-нибудь поможет!

0 голосов
/ 28 октября 2011
//span [ancestor::iframe]

Это выберет все элементы span, которые в какой-то момент имеют предковый элемент iframe.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...