Skip to content

Commit afe26ef

Browse files
committed
update browser names
1 parent b341010 commit afe26ef

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/WebDriver/Browser.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ final class Browser
3131
{
3232
/**
3333
* Check browser names used in static functions in the selenium source:
34-
* @see http://code.google.com/p/selenium/source/browse/trunk/java/client/src/org/openqa/selenium/remote/DesiredCapabilities.java
34+
* @see http://code.google.com/p/selenium/source/browse/java/client/src/org/openqa/selenium/remote/DesiredCapabilities.java
3535
*
3636
* Note: Capability array takes these browserNames and not the "browserTypes"
3737
*
@@ -42,9 +42,11 @@ final class Browser
4242
const CHROME = 'chrome';
4343
const FIREFOX = 'firefox';
4444
const HTMLUNIT = 'htmlunit';
45+
const IE = 'internet explorer';
4546
const INTERNET_EXPLORER = 'internet explorer';
4647
const IPHONE = 'iPhone';
4748
const IPAD = 'iPad';
4849
const OPERA = 'opera';
49-
const SAFARI = 'safari';
50+
const PHANTOMJS = 'phantomjs';
51+
const SAFARI = 'safari';
5052
}

0 commit comments

Comments
 (0)