diff --git a/docs/src/intro-js.md b/docs/src/intro-js.md index 010fb789f8..8c5554ddbb 100644 --- a/docs/src/intro-js.md +++ b/docs/src/intro-js.md @@ -88,7 +88,7 @@ Once your test has finished running a [HTML Reporter](./html-reporter.md) will h npx playwright show-report ``` -image +HTML Reporter ## What's next diff --git a/docs/src/running-tests-js.md b/docs/src/running-tests-js.md index 9a591b0d82..532293a06a 100644 --- a/docs/src/running-tests-js.md +++ b/docs/src/running-tests-js.md @@ -82,7 +82,7 @@ Since Playwright runs in Node.js, you can debug it with your debugger of choice npx playwright test example.spec.ts:42 --debug ``` -Screenshot 2022-07-29 at 23 50 13 +Debugging Tests Check out our [debugging guide](./debug.md) to learn more about the [Playwright Inspector](./debug.md#playwright-inspector) as well as debugging with [Browser Developer tools](./debug.md#browser-developer-tools). @@ -96,11 +96,11 @@ The [HTML Reporter](./html-reporter.md) shows you a full report of your tests al npx playwright show-report ``` -image +HTML Report > Test Reports view You can click on each test and explore the tests errors as well as each step of the test. -image +HTML Reporter > Test Reports detailed view ## What's Next