在Codeception中选择自动填充下拉列表

时间:2016-02-24 05:26:22

标签: php codeception

实施例: http://phppot.com/demo/jquery-dependent-dropdown-list-countries-and-states/
代码:

$I = new AcceptanceTester($scenario);
$I->wantTo('Check Drop Down');
$I->amOnPage('http://phppot.com/demo/jquery-dependent-dropdown-list-countries-and-states/');
$I->see('Demo jQuery Dependent DropDown List - Countries and States');
$I->selectOption('country-list', '1');
$I->selectOption('state-list', '16');

我不想使用webdriver,在Codeception或PHP中是否有任何可能的方法?

1 个答案:

答案 0 :(得分:0)

如果不使用WebDriver,就无法在PHP中测试Javascript代码。