MDL-49110 behat: No expand form required in non-js mode

This commit is contained in:
Rajesh Taneja
2015-02-06 13:06:52 +08:00
parent bd8926f9f3
commit 6da3248b9f
+4
View File
@@ -98,6 +98,10 @@ class behat_forms extends behat_base {
* @return void
*/
protected function expand_all_fields() {
// Expand only if JS mode, else not needed.
if (!$this->running_javascript()) {
return;
}
// We already know that we waited for the DOM and the JS to be loaded, even the editor
// so, we will use the reduced timeout as it is a common task and we should save time.