Codeception PhpBrowser和测试代码不能在同一台PC上运行
my acceptance.suite.yml
class_name: AcceptanceTester
modules:
enabled:
- PhpBrowser
AcceptanceTests#Selenium
config:
PhpBrowser:
url: 'http://transfer.ll'
我的TestCept.php
$I = new AcceptanceTester($scenario);
$I->wantTo('perform actions and see result');
$I->amOnPage('/admin');
$I->see('Test');
如果我在另一台电脑上使用其他网址,它可以正常工作,但在同一台计算机上无法正常工作。
我使用Apache和Ubuntu。在/ etc / hosts中我有记录:
127.0.0.1 transfer.ll
如果我通过transfer在终端进行ping操作,那就没关系,显示ip 127.0.0.1
当我尝试运行测试时,收到错误:
<div id="titles"><h1>ERROR</h1>
<h2>The requested URL could not be retrieved</h2></div>
<pre>Name Error: The domain name does not exist.</pre>