From a55f9a7fa0b3e2b12c35219500c8f7f429e8a0f4 Mon Sep 17 00:00:00 2001 From: "Jehan-Guillaume (ioguix) de Rorthais" Date: Sat, 17 Dec 2011 00:24:15 +0100 Subject: [PATCH] Select English language during the intro while login in. --- tests/selenium/testBuilder.class.php | 2 ++ 1 file changed, 2 insertions(+) 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);