You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
568tools/tools/NKeditor/test/webdriver/test-unittest.php

24 lines
421 B

<?php
require_once dirname(__FILE__) . '/KindEditorDriver.php';
$testFiles = array(
'test/core.html',
'test/event.html',
'test/html.html',
'test/selector.html',
'test/node.html',
'test/range.html',
'test/cmd.html',
'test/editor.html',
);
$driver = new KindEditorDriver();
foreach ($testFiles as $file) {
$driver->open($file);
equals($driver->selector('.failed')->element->text(), '0');
}
$driver->close();