Conversation
|
|
||
| ### Installing ChromeDriver and geckodriver | ||
|
|
||
| Panther uses the WebDriver protocol to control the browser used to crawl websites. |
There was a problem hiding this comment.
Why should we delete this? It's an important information.
There was a problem hiding this comment.
A quick Ctrl+F for "webdriver" gives me:
- It leverages the W3C's WebDriver protocol
- $client->getWebDriver()->manage()->getLog('browser');
- client->getWebDriver()->manage()->getLog('performance');
- Checking the State of the WebDriver Connection
- Use the Client::ping() method to check if the WebDriver connection is still active
- because this library uses WebDriverElement internally
- Panther is built on top of PHP WebDriver
So if you merge this, it will still be explained 7 times :-)
There was a problem hiding this comment.
It's stated only one time that it's a W3C spec and it's an important information (especially because there are several things named WebDriver).
There was a problem hiding this comment.
Sorry, I don't see your point.
It's stated only one time that it's a W3C spec
Well, but the sentence I deleted doesn't contain that! ;-)
Besides, the "installation" section just isn't the right place to inform people what this project is all about. This should be explained at the very top, and the third sentence on the page does this very clear IMO:
It leverages the W3C's WebDriver protocol to drive native web browsers such as Google Chrome and Firefox.
README.md
Outdated
| and [GeckoDriver](https://github.com/mozilla/geckodriver) (for Firefox) and put them anywhere in your `PATH` | ||
| or in the `drivers/` directory of your project. | ||
| Finally, you can manually download [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/) (for Chromium or Chrome) | ||
| or [GeckoDriver](https://github.com/mozilla/geckodriver) (for Firefox) and add them to your `PATH` or put them |
There was a problem hiding this comment.
and is better (you may need both).
There was a problem hiding this comment.
I changed it to "and/or", since not everybody needs both. OK?
No description provided.