通过fancybox2设置iframe ID以允许webdriver switchTo() - > frame(id)

时间:2015-10-02 21:18:55

标签: php selenium selenium-webdriver fancybox-2

我使用fancybox2创建iframe,但我看不到设置iframe创建ID的方法,这阻止我使用php-webdriver和selenium测试iframe的内容。

简化版代码:

<a href="iframe.html" class="various fancybox.iframe">iframe</a>

<script>
$(document).ready(function() {
    $(".various").fancybox()
});
</script>

哪个有效,但是使用Chrome的检查器,iframe是(这次)使用ID生成的 fancybox-frame1443817733402,似乎是随机的。这意味着当我尝试使用php-webdriver switch to this frame(点击链接创建iframe)时,我无法预测要传入的帧ID:

$frame_id = 'fancybox-frame1443817733402'; // can't predict this in advance
$driver->switchTo()->frame($frame_id);

iframe始终使用fancybox-iframe类生成,但调用

$iframe = $driver->findElement(WebDriverBy::class("fancybox-iframe"))

什么也不返回。

我还尝试使用fancybox2的afterLoad回调尝试在尝试通过此ID切换到帧之前明确设置iframe的ID,但这也失败了(I认为因为current是一个对象,而不是一个元素?)

$(".various").fancybox({
    afterLoad: function(current, previous) {
        //console.log(current);
        current.attr('id', 'rob');
    }});

有没有办法明确设置iframe的ID,以便我可以通过selenium / webdriver切换到它?或者有更简单的方法吗?

2 个答案:

答案 0 :(得分:2)

我不知道在这里设置帧ID,但你可以通过xpath切换到一个帧(例如// frame):

    protected WebElement gotoIframeByXpath(final String iframeXpath) {
        if (driver.findElements(By.xpath(iframeXpath)).size() > 0) {  // find elements so an exception isn't thrown if not found
            WebElement contentFrame = driver.findElement(By.xpath(iframeXpath));
            driver.switchTo().frame(contentFrame);
            return contentFrame;
        } else {
            System.out.println("Unable to find " + iframeXpath);
        }
        return null;
    }

答案 1 :(得分:1)

对于任何有兴趣的人,按照@ EGHM的上述回答,我就是这样做的。

// this also works & is a little simpler
//$iframes = $driver->findElements(WebDriverBy::tagName('iframe'));

$iframes = $driver->findElements(WebDriverBy::xPath('//*[starts-with(@id,"fancybox-frame")]'));
$id = $iframes[0]->getAttribute('id');

$driver->switchTo()->frame($id);
echo $driver->getPageSource();