Update README.md

This commit is contained in:
Will Chen 2017-07-11 10:58:31 -07:00 committed by GitHub
parent 176fae711c
commit ec031ee4de

View File

@ -109,9 +109,9 @@ Puppeteer's process model is different than Phantom's. Puppeteer runs out-of-pro
#### Q: What is the difference between Puppeteer and Selenium / WebDriver?
Selenium (which will be used to refer to WebDriver) is a well-established cross-browser API that's useful for testing cross-browser compatibility.
Selenium / WebDriver is a well-established cross-browser API that is useful for testing cross-browser support.
Puppeteer is useful when cross-browser testing isn't critical. For example, many teams only run unit tests with a single browser (e.g. Phantom). In non-testing use cases, Puppeteer provides a powerful but simpler API (because it's only targeting one browser) that enables you to rapidly develop automation script.
Puppeteer is useful when cross-browser testing isn't critical. For example, many teams only run unit tests with a single browser (e.g. Phantom). In non-testing use cases, Puppeteer provides a powerful but simple API because it's only targeting one browser that enables you to rapidly develop automation scripts.
# Migration Guide