Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions docs/src/intro-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,36 +21,12 @@ Playwright recommends using the official [Playwright Pytest plugin](./test-runne

Get started by installing Playwright and running the example test to see it in action.

<Tabs
groupId="package-managers"
defaultValue="pypi"
values={[
{label: 'PyPI', value: 'pypi'},
{label: 'Anaconda', value: 'anaconda'}
]
}>
<TabItem value="pypi">

Install the [Pytest plugin](https://pypi.org/project/pytest-playwright/):

```bash
pip install pytest-playwright
```

</TabItem>
<TabItem value="anaconda">

Install the [Pytest plugin](https://anaconda.org/Microsoft/pytest-playwright):

```bash
conda config --add channels conda-forge
conda config --add channels microsoft
conda install pytest-playwright
```

</TabItem>
</Tabs>

Install the required browsers:

```bash
Expand Down
13 changes: 0 additions & 13 deletions docs/src/library-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ title: "Getting started - Library"

## Installation

### Pip

[<img src="https://badge.fury.io/py/playwright.svg" alt="PyPI version" width="132" height="20" />](https://pypi.python.org/pypi/playwright/)

```bash
Expand All @@ -15,17 +13,6 @@ pip install playwright
playwright install
```

### Conda

[<img src="https://img.shields.io/conda/v/microsoft/playwright" alt="Anaconda version" width="160" height="20" />](https://anaconda.org/Microsoft/playwright)

```bash
conda config --add channels conda-forge
conda config --add channels microsoft
conda install playwright
playwright install
```

These commands download the Playwright package and install browser binaries for Chromium, Firefox and WebKit. To modify this behavior see [installation parameters](./browsers.md#install-browsers).

## Usage
Expand Down
Loading