我是一个尝试使用Selenium WebServer学习Codeception的菜鸟,并遇到了一个我似乎无法找到答案的问题。我正在编写一个超级基本测试,确保在index.php中传入的数据在另一个页面toupper.php上是相同的。
这是我的index.php:
<?php $something = "Can you see me?"; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Convert Me!</title>
</head>
<body>
<h1>Convert Me!</h1>
<p>
<?php echo $something; ?>
</p>
<form action="toupper.php" method="post" id="post_form">
<label for="string">Convert to Uppercase:</label>
<input type="text" name="my_string" id="string">
<input id="submit" type="submit" name="submitButton" value="Convert">
</form>
</body>
</html>
这是我的toupper.php:
<?php
$message = (!empty($_POST['my_string'])) ? strtoupper($_POST['my_string']) : "No string entered";
?>
<!DOCTYPE html>
<html>
<head>
<title>To Upper!</title>
</head>
<body>
<h1>To Upper!</h1>
<p class="message"><?php echo $message; ?></p>
<p><a href="index.php">Back to form</a>.</p>
</body>
</html>
我创建了一个简单的测试套件:
<?php
$I = new AcceptanceTester($scenario);
$I->wantTo('ensure Toupper form works');
$I->amOnPage('index.php');
$I->see('Can you see me?');
$I->fillField('my_string', 'convert me to uppercase');
$I->click('Convert');
$I->amOnSubdomain('toupper.php');
$I->see('CONVERT ME TO UPPERCASE');
现在,每当我运行测试时,测试都会通过,但是当我使用相同的数据再次运行精确测试时,它会失败。而且我没有使用数据库。
这是我得到的错误:
Scenario --
I am on page "index.php"
I see "Can you see me?"
I fill field "my_string","convert me to uppercase"
I click "Convert"
I am on subdomain "toupper.php"
I see "CONVERT ME TO UPPERCASE"
FAIL
--------------------------------------------------------------
Time: 2.59 seconds, Memory: 8.00MB
There was 1 failure:
---------
1) ToupperCept: Ensure toupper form works
Test tests/acceptance/ToupperCept.php
Step See "CONVERT ME TO UPPERCASE"
Fail Failed asserting that /toupper.php
-->
--> contains "convert me to uppercase".
Scenario Steps:
6. $I->see("CONVERT ME TO UPPERCASE")
5. $I->amOnSubdomain("toupper.php")
4. $I->click("Convert")
3. $I->fillField("my_string","convert me to uppercase")
2. $I->see("Can you see me?")
1. $I->amOnPage("index.php")
FAILURES!
Tests: 1, Assertions: 2, Failures: 1.
有人能指出我正确的方向如何解决这个问题?我很感激!
更新
在搞乱测试时,当我在toupper.php上写一个以大写字母查找文本的断言时,EX)$ I-&gt;看(&#39; SOMETHING&#39;); ,测试失败。似乎如果测试在某些时候失败,那么所有其他断言都会失败。即使我注释掉失败的断言,所有先前的断言都会在再次运行测试时失败。太困惑了!!
UPDATE2
对于多次更新感到抱歉,但是我还是将webdriver的浏览器从firefox切换到chrome。我所有的测试都是每次都完美无缺。奇怪的是只有firefox的问题。
答案 0 :(得分:0)
尝试在失败的行之前在测试代码中插入$I->pauseExecution();
。然后,您可以在失败之前轻松查看浏览器窗口中发生的情况。可能您遇到Firefox在表单中保留数据的问题。