Skip to content

Commit

Permalink
Add tooltip and issue number links
Browse files Browse the repository at this point in the history
- Add the tooltip to the emoji to descrive what it means.
- If there is an issue open for the feature then link to it from the
  emoji.
Resolves: #722 (comment)
  • Loading branch information
ankur22 committed Jul 8, 2022
1 parent d455b16 commit a2a0df4
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 52 deletions.
20 changes: 10 additions & 10 deletions src/data/markdown/docs/30 xk6-browser/01 xk6-browser/01 Browser.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ A Browser is created via [browserType.launch([options])](/javascript-api/xk6-bro

| State | Method | Description |
| - | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| | [browser.close()](/javascript-api/xk6-browser/browser/close) | Closes the browser and all of its pages (if any were opened). |
| | [browser.contexts()](/javascript-api/xk6-browser/browser/contexts) | Allows you to access all open browser contexts. |
| | [browser.isConnected](/javascript-api/xk6-browser/browser/isconnected) | Indicates whether the WebSocket connection to the browser application is active or not. |
| | [browser.newBrowserCDPSession()](/javascript-api/xk6-browser/browser/newbrowsercdpsession) | Allows you to access Browser's CDP session and talk directly to the browser application using the CDP protocol. |
| 🚧 | [browser.newContext([options])](/javascript-api/xk6-browser/browser/newcontext/) | Creates and returns a new browser context. |
| 🚧 | [browser.newPage([options])](/javascript-api/xk6-browser/browser/newpage) | Creates a new Page in a new BrowserContext and returns the page. |
| 🚧 | [browser.on('disconnected')](/javascript-api/xk6-browser/browser/on) | Detects events from the browser application. Follow the progress in [issue #96](https://github.com/grafana/xk6-browser/issues/96). |
| | [browser.startTracing()](/javascript-api/xk6-browser/browser/starttracing) | Starts Chromium Tracing for debugging a Page. |
| | [browser.stopTracing()](/javascript-api/xk6-browser/browser/stoptracing) | Stops the tracing created by the browser.startTracing() method. |
| | [browser.version()](/javascript-api/xk6-browser/browser/version) | Returns the browser application's version. |
| <span title="Implemented">✅</span> | [browser.close()](/javascript-api/xk6-browser/browser/close) | Closes the browser and all of its pages (if any were opened). |
| <span title="Implemented">✅</span> | [browser.contexts()](/javascript-api/xk6-browser/browser/contexts) | Allows you to access all open browser contexts. |
| <span title="Implemented">✅</span> | [browser.isConnected](/javascript-api/xk6-browser/browser/isconnected) | Indicates whether the WebSocket connection to the browser application is active or not. |
| <span title="Not implemented">❌</span> | [browser.newBrowserCDPSession()](/javascript-api/xk6-browser/browser/newbrowsercdpsession) | Allows you to access Browser's CDP session and talk directly to the browser application using the CDP protocol. |
| <span title="Work in progress">🚧</span> | [browser.newContext([options])](/javascript-api/xk6-browser/browser/newcontext/) | Creates and returns a new browser context. |
| <span title="Work in progress">🚧</span> | [browser.newPage([options])](/javascript-api/xk6-browser/browser/newpage) | Creates a new Page in a new BrowserContext and returns the page. |
| <span title="Work in progress">[🚧](https://github.com/grafana/xk6-browser/issues/96)</span> | [browser.on('disconnected')](/javascript-api/xk6-browser/browser/on) | Detects events from the browser application. |
| <span title="Not implemented">❌</span> | [browser.startTracing()](/javascript-api/xk6-browser/browser/starttracing) | Starts Chromium Tracing for debugging a Page. |
| <span title="Not implemented">❌</span> | [browser.stopTracing()](/javascript-api/xk6-browser/browser/stoptracing) | Stops the tracing created by the browser.startTracing() method. |
| <span title="Implemented">✅</span> | [browser.version()](/javascript-api/xk6-browser/browser/version) | Returns the browser application's version. |

An example of using a Browser to create a [Page](/javascript-api/xk6-browser/page):

Expand Down
Loading

0 comments on commit a2a0df4

Please sign in to comment.