<a class="lnk" href="http://www.google.com">Go Google</a>
点击此链接时,会追加另一个css类'loading'。我们如何在重定向到google.com之前对此进行测试。
$element = $driver->findElement(WebDriverBy::className('lnk'));
$element->click();
在重定向到目标之前,有没有办法检查class属性是否包含'loading'?
答案 0 :(得分:1)
您可以使用JavaScript编辑href
属性并添加超时
$element = $driver->findElement(WebDriverBy::className('lnk'));
$href = $element->getAttribute('href');
$script = "javascript:setTimeout( function() { window.location = {$href} }, 5000 );"
$driver->executeScript("arguments[0].setAttribute('href', arguments[1]);", $element, $script);
现在你有足够的时间来检查class
属性是否包含loading
$element = $driver->findElement(WebDriverBy::className('lnk'));
$class = $element->getAttribute('class');
if (strpos($class, 'loading') !== false) { }
答案 1 :(得分:1)
我不熟悉selenium和JavaScript(包括英语,其中所有机器都是从中翻译过来的)。 如果有任何错误,请纠正我。
我认为测试点击事件很难通过点击默认访问连接。因此,只要我们在测试点击之前删除默认点击,您就可以执行所需的测试。 这是代码: HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
<style>
.loading{
font-size: 40px;
}
</style>
</head>
<body>
<a id="google" onclick="loading()" href="https://google.com">Google</a>
</body>
<script src="//cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script>
function loading()
{
$("#google").attr('class', 'loading');
}
</script>
</html>
测试代码:
<?php
use Facebook\WebDriver\Firefox\FirefoxDriver;
use Facebook\WebDriver\Firefox\FirefoxProfile;
use Facebook\WebDriver\Remote\DesiredCapabilities;
use Facebook\WebDriver\Remote\RemoteWebDriver;
include './vendor/autoload.php';
$profile = new FirefoxProfile();
$caps = DesiredCapabilities::firefox();
$caps->setCapability(FirefoxDriver::PROFILE, $profile);
$driver = RemoteWebDriver::create('localhost:4444/wd/hub', $caps);
$driver->get("http://localhost/test.php");
$element = $driver->findElement(\Facebook\WebDriver\WebDriverBy::id('google'));
//Cancel the default click event to perform the test
$driver->executeScript(' document.testLinkClick = function (event){ event.preventDefault() } ');
$driver->executeScript(' $("#google").bind( "click", document.testLinkClick ); ');
$element->click();
$driver->wait(3, 500)->until(function () use ($element){
$class = $element->getAttribute('class');
if (strpos($class, 'loading') !== false) return true;
}, 'error');
//Restore the default click event to perform subsequent tests
$driver->executeScript('$("#google").removeClass("loading")');
$driver->executeScript('$("#google").unbind("click", document.testLinkClick)');
$element->click(); //继续你的测试
原谅我的机器翻译英语英语