summaryrefslogtreecommitdiff
path: root/tests/test_tools/PradoGenericSeleniumTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_tools/PradoGenericSeleniumTest.php')
-rw-r--r--tests/test_tools/PradoGenericSeleniumTest.php24
1 files changed, 13 insertions, 11 deletions
diff --git a/tests/test_tools/PradoGenericSeleniumTest.php b/tests/test_tools/PradoGenericSeleniumTest.php
index 66502210..c3d3f4f0 100644
--- a/tests/test_tools/PradoGenericSeleniumTest.php
+++ b/tests/test_tools/PradoGenericSeleniumTest.php
@@ -4,7 +4,7 @@ require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
class PradoGenericSeleniumTest extends PHPUnit_Extensions_SeleniumTestCase
{
public static $browsers = array(
- /*
+/*
array(
'name' => 'Firefox on OSX',
'browser' => '*firefox',
@@ -12,33 +12,35 @@ class PradoGenericSeleniumTest extends PHPUnit_Extensions_SeleniumTestCase
'port' => 4444,
'timeout' => 30000,
),
+*/
array(
'name' => 'Chrome on OSX',
- 'browser' => '*chrome',
+ 'browser' => '*googlechrome',
'host' => '127.0.0.1',
'port' => 4444,
'timeout' => 30000,
),
+/*
array(
- 'name' => 'Internet Explorer 11 on Windows8.1',
- 'browser' => '*iexplore',
- 'host' => '192.168.253.39',
- 'port' => 4444,
+ 'name' => 'Firefox on WindowsXP',
+ 'browser' => '*firefox',
+ 'host' => '127.0.0.1',
+ 'port' => 4445,
),
- */
array(
'name' => 'Internet Explorer 8 on WindowsXP',
'browser' => '*iehta',
'host' => '127.0.0.1',
- 'port' => 4444,
- )
+ 'port' => 4445,
+ ),
+*/
);
- static $baseurl='http://10.0.2.2/prado-master/tests/FunctionalTests/';
+ static $baseurl='http://192.168.44.82/prado-master/tests/FunctionalTests/';
protected function setUp()
{
-// $this->shareSession(true);
+ $this->shareSession(true);
$this->setBrowserUrl(static::$baseurl);
}