Selenium2无法填写密码字段

时间:2014-02-10 19:33:41

标签: php html selenium-webdriver

Selenium2测试问题未填写密码字段。说元素不可见。我已经包含了错误,硒测试和下面的代码。

错误

  

无法测试管理帐户设置功能   ManageAccountSettingsCept.php抱歉,我无法填写字段   “#users_password”,“myPassword”:Behat \ Mink \ Exception \ ElementException:   (// html / descendant-or-self :: * [@ id =。抛出异常)   'users_password'])[1]元素当前不可见,因此可能不会   与

互动

硒测试

$I = new SeleniumGuy($scenario);
$I->wantTo('Test Manage Account Settings functionality');
$I->amOnPage('/login');
$I->fillField('#users_email','email@email.com');
$I->fillField('#users_password','myPassword');

代码

<div class="core_component_item core_diagonal_input">
     <input value="" name="users_password" id="users_password" type="password"  style="border:none;margin-left:8px;margin-top:6px;color:#33322e;background-color:transparent;outline:0;resize:none; width:220px;border:solid 1px transparent; " class="core_input_text">
</div>

0 个答案:

没有答案