diff --git a/tests/selenium/testBuilder.class.php b/tests/selenium/testBuilder.class.php index 2cebffa1d..95402505e 100644 --- a/tests/selenium/testBuilder.class.php +++ b/tests/selenium/testBuilder.class.php @@ -74,6 +74,8 @@ public function addComment($c) { public function login($u, $p) { global $webUrl, $data; $this->addComment("Login as {$u}"); + $this->test('open', "{$webUrl}/intro.php"); + $this->select('language', 'English'); $this->test('open', "{$webUrl}/login.php?server={$data->conn->host}&subject=server"); $this->test('type', "//input[@name='loginUsername']", $u); $this->test('type', "//input[@id='loginPassword']", $p);