Skip to content

Commit bb9ef45

Browse files
authored
Merge pull request php-webdriver#733 from php-webdriver/renaming
Rename repository to php-webdriver/php-webdriver
2 parents 1ab6915 + 71aff82 commit bb9ef45

File tree

5 files changed

+7
-14
lines changed

5 files changed

+7
-14
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ The code of conduct is described in [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md)
1616
4. When implementing notable change, fix or a new feature, add record to Unreleased section of [CHANGELOG.md](CHANGELOG.md)
1717
5. Submit your [pull request](https://github.com/facebook/php-webdriver/pulls) against community branch
1818

19-
Note before any pull request can be accepted, a [Contributors Licensing Agreement](https://developers.facebook.com/opensource/cla) must be signed.
20-
2119
When you are going to contribute, please keep in mind that this webdriver client aims to be as close as possible to other languages Java/Ruby/Python/C#.
2220
FYI, here is the overview of [the official Java API](http://seleniumhq.github.io/selenium/docs/api/java/)
2321

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ versions of Chrome and Chromedriver with just a slight limitations.
1919
The concepts of this library are very similar to the "official" Java, .NET, Python and Ruby bindings from the
2020
[Selenium project](https://github.com/SeleniumHQ/selenium/).
2121

22-
Looking for API documentation of php-webdriver? See [https://facebook.github.io/php-webdriver/](https://facebook.github.io/php-webdriver/latest/)
22+
Looking for API documentation of php-webdriver? See [https://php-webdriver.github.io/php-webdriver/](https://php-webdriver.github.io/php-webdriver/latest/)
2323

2424
Any complaints, questions, or ideas? Post them in the user group https://www.facebook.com/groups/phpwebdriver/.
2525

@@ -94,7 +94,7 @@ For latest changes see [CHANGELOG.md](CHANGELOG.md) file.
9494

9595
## More information
9696

97-
Some how-tos are provided right here in [our GitHub wiki](https://github.com/facebook/php-webdriver/wiki).
97+
Some how-tos are provided right here in [our GitHub wiki](https://github.com/php-webdriver/php-webdriver/wiki).
9898

9999
You may also want to check out the Selenium [docs](http://docs.seleniumhq.org/docs/) and [wiki](https://github.com/SeleniumHQ/selenium/wiki).
100100

@@ -113,7 +113,7 @@ We have a great community willing to help you!
113113

114114
- **Via our Facebook Group** - If you have questions or are an active contributor consider joining our [facebook group](https://www.facebook.com/groups/phpwebdriver/) and contribute to communal discussion and support
115115
- **Via StackOverflow** - You can also [ask a question](https://stackoverflow.com/questions/ask?tags=php+selenium-webdriver) or find many already answered question on StackOverflow
116-
- **Via GitHub** - Another option if you have a question (or bug report) is to [submit it here](https://github.com/facebook/php-webdriver/issues/new) as a new issue
116+
- **Via GitHub** - Another option if you have a question (or bug report) is to [submit it here](https://github.com/php-webdriver/php-webdriver/issues/new) as a new issue
117117

118118
## Contributing
119119

composer.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
{
22
"name": "facebook/webdriver",
33
"description": "A PHP client for Selenium WebDriver",
4-
"keywords": ["webdriver", "selenium", "php", "facebook"],
5-
"homepage": "https://github.com/facebook/php-webdriver",
4+
"keywords": ["webdriver", "selenium", "php"],
5+
"homepage": "https://github.com/php-webdriver/php-webdriver",
66
"type": "library",
77
"license": "MIT",
8-
"support": {
9-
"issues": "https://github.com/facebook/php-webdriver/issues",
10-
"forum": "https://www.facebook.com/groups/phpwebdriver/",
11-
"source": "https://github.com/facebook/php-webdriver"
12-
},
138
"minimum-stability": "beta",
149
"require": {
1510
"php": "^5.6 || ~7.0",

tests/functional/RemoteWebDriverTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function testShouldGetPageSource()
4444

4545
$source = $this->driver->getPageSource();
4646
$this->assertContains('<h1 id="welcome">', $source);
47-
$this->assertContains('Welcome to the facebook/php-webdriver testing page.', $source);
47+
$this->assertContains('Welcome to the php-webdriver testing page.', $source);
4848
}
4949

5050
/**

tests/functional/web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<div id="red-box"></div>
2020

21-
<h1 id="welcome">Welcome to the facebook/php-webdriver testing page.</h1>
21+
<h1 id="welcome">Welcome to the php-webdriver testing page.</h1>
2222

2323
<a href="form.html" id="a-form">Form test page</a>
2424
|

0 commit comments

Comments
 (0)