From 9836f72c3927052de1df8d2e9f87c61b486da13f Mon Sep 17 00:00:00 2001 From: liyang Date: Wed, 10 Jul 2024 15:22:52 +0800 Subject: [PATCH] * [uitest] Load page in ext module. --- test/lib/ui.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/lib/ui.php b/test/lib/ui.php index 9be1dc70a5..89008efa70 100644 --- a/test/lib/ui.php +++ b/test/lib/ui.php @@ -338,13 +338,14 @@ class tester extends result * @param int $method * @param array $params * @param string $iframeID + * @param string $ext * @access public * @return object */ - public function initForm($module, $method, $params = array(), $iframeID = '') + public function initForm($module, $method, $params = array(), $iframeID = '', $ext = '') { $this->openURL($module, $method, $params, $iframeID); - return $this->loadPage(); + return $this->loadPage($module, $method, $ext); } /**