Skip to content

Commit 669b69f

Browse files
author
LuisRBarreras
committed
namespace Nearsoft\SeleniumClient
1 parent 2d5370f commit 669b69f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+124
-121
lines changed

demo/Demo1.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
require_once __DIR__ . '/../test/bootstrap.php';
44

5-
use SeleniumClient\By;
6-
use SeleniumClient\SelectElement;
7-
use SeleniumClient\WebDriver;
8-
use SeleniumClient\DesiredCapabilities;
5+
use Nearsoft\SeleniumClient\By;
6+
use Nearsoft\SeleniumClient\SelectElement;
7+
use Nearsoft\SeleniumClient\WebDriver;
8+
use Nearsoft\SeleniumClient\DesiredCapabilities;
99

1010
class Demo1Test extends PHPUnit_Framework_TestCase
1111
{

demo/Demo2.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
require_once __DIR__ . '/../bootstrap.php';
44

5-
use SeleniumClient\By;
6-
use SeleniumClient\WebDriver;
7-
use SeleniumClient\WebDriverWait;
8-
use SeleniumClient\DesiredCapabilities;
9-
use SeleniumClient\CapabilityType;
10-
use SeleniumClient\BrowserType;
11-
use SeleniumClient\PlatformType;
5+
use Nearsoft\SeleniumClient\By;
6+
use Nearsoft\SeleniumClient\WebDriver;
7+
use Nearsoft\SeleniumClient\WebDriverWait;
8+
use Nearsoft\SeleniumClient\DesiredCapabilities;
9+
use Nearsoft\SeleniumClient\CapabilityType;
10+
use Nearsoft\SeleniumClient\BrowserType;
11+
use Nearsoft\SeleniumClient\PlatformType;
1212

1313
class Demo2Test extends PHPUnit_Framework_TestCase
1414
{

src/Nearsoft/SeleniumClient/Alert.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace SeleniumClient;
16+
namespace Nearsoft\SeleniumClient;
1717

1818
class Alert
1919
{

src/Nearsoft/SeleniumClient/BrowserType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace SeleniumClient;
16+
namespace Nearsoft\SeleniumClient;
1717

1818
abstract class BrowserType
1919
{

src/Nearsoft/SeleniumClient/By.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace SeleniumClient;
16+
namespace Nearsoft\SeleniumClient;
17+
1718

1819
class By
1920
{

src/Nearsoft/SeleniumClient/CapabilityType.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace SeleniumClient;
16+
namespace Nearsoft\SeleniumClient;
17+
1718

1819
abstract class CapabilityType {
1920

src/Nearsoft/SeleniumClient/Commands/Command.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace SeleniumClient\Commands;
16+
namespace Nearsoft\SeleniumClient\Commands;
1717

18-
use SeleniumClient\Commands\Dictionary;
18+
use Nearsoft\SeleniumClient\Commands\Dictionary;
1919

2020
class Command
2121
{

src/Nearsoft/SeleniumClient/Commands/Dictionary.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace SeleniumClient\Commands;
16+
namespace Nearsoft\SeleniumClient\Commands;
1717

18-
use SeleniumClient\Http\HttpClient;
18+
use Nearsoft\SeleniumClient\Http\HttpClient;
1919

2020
class Dictionary{
2121
public static $commands = array(

src/Nearsoft/SeleniumClient/Cookie.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace SeleniumClient;
16+
namespace Nearsoft\SeleniumClient;
1717

1818
class Cookie {
1919

src/Nearsoft/SeleniumClient/DesiredCapabilities.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
namespace SeleniumClient;
16+
namespace Nearsoft\SeleniumClient;
1717

18-
use SeleniumClient\CapabilityType;
18+
use Nearsoft\SeleniumClient\CapabilityType;
1919

2020
class DesiredCapabilities {
2121

0 commit comments

Comments
 (0)