docs(languages): added Go reference (#3867)

This commit is contained in:
Max Schmitt 2020-09-14 16:54:58 +02:00 committed by GitHub
parent 1421ed99ba
commit dfbd1ceacc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 3 deletions

View file

@ -99,7 +99,7 @@ $ docker run --rm -it playwright:localbuild /bin/bash
### Push ### Push
Docker images are published automatically by Github Actions. We currently publish the following Docker images are published automatically by GitHub Actions. We currently publish the following
images: images:
- `mcr.microsoft.com/playwright:next` - tip-of-tree image version. - `mcr.microsoft.com/playwright:next` - tip-of-tree image version.
- `mcr.microsoft.com/playwright:bionic` - last Playwright release docker image. - `mcr.microsoft.com/playwright:bionic` - last Playwright release docker image.

View file

@ -6,6 +6,7 @@ The Playwright API is available in multiple languages.
- [JavaScript and TypeScript](#javascript-and-typescript) - [JavaScript and TypeScript](#javascript-and-typescript)
- [Python](#python) - [Python](#python)
- [C#](#c) - [C#](#c)
- [Go](#go)
<!-- GEN:stop --> <!-- GEN:stop -->
## JavaScript and TypeScript ## JavaScript and TypeScript
@ -21,7 +22,7 @@ npm i -D playwright
## Python ## Python
Playwright in Python is available in preview. Playwright for Python is available in preview.
``` ```
pip install playwright pip install playwright
@ -33,7 +34,7 @@ pip install playwright
## C# ## C#
Playwright in C# is available in preview. Playwright for C# is available in preview.
``` ```
dotnet add package PlaywrightSharp dotnet add package PlaywrightSharp
@ -41,3 +42,14 @@ dotnet add package PlaywrightSharp
* [Playwright on NuGet](https://www.nuget.org/packages/PlaywrightSharp/) * [Playwright on NuGet](https://www.nuget.org/packages/PlaywrightSharp/)
* [GitHub repo](https://github.com/hardkoded/playwright-sharp) * [GitHub repo](https://github.com/hardkoded/playwright-sharp)
## Go
Playwright for Go is available in preview.
```
go get github.com/mxschmitt/playwright-go
```
* [GitHub repo](https://github.com/mxschmitt/playwright-go)
* [Documentation](https://pkg.go.dev/github.com/mxschmitt/playwright-go?tab=doc)