forked from instaclick/php-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from alexpott/w3c-session-fix
Fix w3c false issues
- Loading branch information
Showing
8 changed files
with
113 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
|
||
/** | ||
* Copyright 2021-2022 Anthon Pang. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* @package WebDriver | ||
* | ||
* @author Anthon Pang <apang@softwaredevelopment.ca> | ||
*/ | ||
|
||
namespace Test\WebDriver; | ||
|
||
/** | ||
* ChromeDriver | ||
* | ||
* @package WebDriver | ||
* | ||
* @group Functional | ||
*/ | ||
class ChromeDriverNonW3CTest extends ChromeDriverTest | ||
{ | ||
protected $w3c = false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
test/Test/WebDriver/Selenium4dot8ChromeWebDriverNonW3CTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace Test\WebDriver; | ||
|
||
use WebDriver\Browser; | ||
|
||
/** | ||
* Selenium WebDriver | ||
* | ||
* @package WebDriver | ||
* | ||
* @group Functional | ||
*/ | ||
class Selenium4dot8ChromeWebDriverNonW3CTest extends Selenium4dot8ChromeWebDriverTest | ||
{ | ||
protected $w3c = FALSE; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace Test\WebDriver; | ||
|
||
use WebDriver\Browser; | ||
|
||
/** | ||
* Selenium WebDriver | ||
* | ||
* @package WebDriver | ||
* | ||
* @group Functional | ||
*/ | ||
class Selenium4dot8ChromeWebDriverTest extends Selenium4ChromeWebDriverTest | ||
{ | ||
protected $testWebDriverRootUrl = 'http://oldchrome:4444'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters