无法理解为什么我收到Codecept错误

时间:2019-02-24 14:32:16

标签: php testing automated-tests codeception

我正在编写一个小型测试程序,我想在其中找到登录表格并填写它。但是,我收到一个错误。 enter image description here

这就是我在代码中得到的:

<?php

class loginCest
{
    public function frontpageWorks(AcceptanceTester $I)
    {

        $I->wantTo("Create login test");
        $I->amOnPage('my link');
        $I->see("join");
        $I->fillField('.form-control', 'my_login');
    }
}

1 个答案:

答案 0 :(得分:0)

我会尝试使用像这样的严格定位器:

$I->fillField(['name' => 'userIdentifier'], 'my_login');

因为代码接收可能会发现类.form-control的多个元素(甚至是非输入元素)