Index: src/test/it/com/xpn/xwiki/it/selenium/AllTests.java
===================================================================
--- src/test/it/com/xpn/xwiki/it/selenium/AllTests.java	(revision 11768)
+++ src/test/it/com/xpn/xwiki/it/selenium/AllTests.java	(working copy)
@@ -76,6 +76,7 @@
         addTestCase(suite, SchedulerTest.class);
         addTestCase(suite, PanelWizardTest.class);
         addTestCase(suite, DocExtraTest.class);
+        addTestCase(suite, ImportsTest.class);
 
         return new XWikiSeleniumTestSetup(new XWikiTestSetup(suite));
     }
Index: src/test/it/com/xpn/xwiki/it/selenium/ImportsTest.java
===================================================================
--- src/test/it/com/xpn/xwiki/it/selenium/ImportsTest.java	(revision 0)
+++ src/test/it/com/xpn/xwiki/it/selenium/ImportsTest.java	(revision 0)
@@ -0,0 +1,62 @@
+/*
+ * See the NOTICE file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package com.xpn.xwiki.it.selenium;
+
+import com.xpn.xwiki.it.selenium.framework.AbstractXWikiTestCase;
+import com.xpn.xwiki.it.selenium.framework.AlbatrossSkinExecutor;
+import com.xpn.xwiki.it.selenium.framework.XWikiTestSuite;
+import junit.framework.Assert;
+import junit.framework.Test;
+
+/**
+ * Verify the Accordions features.
+ *
+ * @version $Id: $
+ */
+public class ImportsTest extends AbstractXWikiTestCase
+{
+    public static Test suite()
+    {
+        /*
+         * This works with *chorme browser launcher
+         */
+        XWikiTestSuite suite = new XWikiTestSuite("Verify the Javascript Accordion feature");
+        suite.addTestSuite(ImportsTest.class, AlbatrossSkinExecutor.class);
+        return suite;
+    }
+
+    public void setUp() throws Exception
+    {
+        super.setUp();        
+        loginAsAdmin();
+    }
+    
+    public void testExports()
+    {
+        clickLinkWithXPath("//div[@id='tmAdmin']/a/strong",true);
+        clickLinkWithText("Import");
+        this.setFieldValue("xwikiuploadfile", "/home/gpaul44/Desktop/Main.WebHome.xar");
+        clickLinkWithXPath("//input[@value='Attach this file']",true);
+        clickLinkWithText("Main.WebHome.xar",false);
+        clickLinkWithXPath("//input[@value='Import']",true);
+        assertTextPresent("Importing Main.WebHome.xar: Import successful ");        
+    }
+    
+}
\ No newline at end of file
Index: src/test/it/com/xpn/xwiki/it/selenium/framework/XWikiSeleniumTestSetup.java
===================================================================
--- src/test/it/com/xpn/xwiki/it/selenium/framework/XWikiSeleniumTestSetup.java	(revision 11768)
+++ src/test/it/com/xpn/xwiki/it/selenium/framework/XWikiSeleniumTestSetup.java	(working copy)
@@ -50,7 +50,7 @@
 
     protected void setUp() throws Exception
     {
-        this.selenium = new DefaultSelenium("localhost", SeleniumServer.DEFAULT_PORT, BROWSER, BASE_URL);
+        this.selenium = new DefaultSelenium("localhost", SeleniumServer.DEFAULT_PORT, "*chrome /usr/lib/firefox/firefox-2-bin", BASE_URL);
 
         // Sets the Selenium object in all tests
         for (AbstractXWikiTestCase test: getTests(getTest())) {
