Metadata-Version: 2.1
Name: pytest-pyppeteer
Version: 0.2.2
Summary: A plugin to run pyppeteer in pytest.
Home-page: https://github.com/luizyao/pytest-pyppeteer
Author: Yao Meng
Author-email: yaomeng614@gmail.com
Maintainer: Yao Meng
Maintainer-email: yaomeng614@gmail.com
License: MIT
Keywords: pytest-plugin pyppeteer puppeteer
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pyppeteer (==0.2.2)
Requires-Dist: pytest-asyncio (>=0.14.0)
Requires-Dist: pytest (>=6.0.2)
Requires-Dist: pydantic (>=1.6.1)
Requires-Dist: cssselect (>=1.1.0)
Requires-Dist: lxml (>=4.5.2)

# pytest-pyppeteer
A plugin to run [pyppeteer](https://github.com/pyppeteer/pyppeteer) in pytest.

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pytest-pyppeteer)
[![GitHub issues](https://img.shields.io/github/issues-raw/luizyao/pytest-pyppeteer)](https://github.com/luizyao/pytest-pyppeteer/issues)
[![PyPI](https://img.shields.io/pypi/v/pytest-pyppeteer)](https://pypi.org/project/pytest-pyppeteer/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/pytest-pyppeteer)](https://pypi.org/project/pytest-pyppeteer/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)


# Documents
Github Pages: <https://luizyao.github.io/pytest-pyppeteer/>

Gitee Pages: <https://luizyao.gitee.io/pytest-pyppeteer/>

# Installation
You can install pytest-pyppeteer via [pip](https://pypi.org/project/pip/):

```bash
$ pip install pytest-pyppeteer
```

or install the latest one on Github:

```bash
pip install git+https://github.com/luizyao/pytest-pyppeteer.git
```


# Quickstart

For example, query the rating of the movie **The Shawshank Redemption** on [douban.com](https://movie.douban.com).

```python
from dataclasses import dataclass


@dataclass(init=False)
class Elements:
    url = "https://movie.douban.com/"

    query = "#inp-query"
    apply = ".inp-btn > input:nth-child(1)"

    result = (
        "#root > div > div > div > div > div:nth-child(1) > div.item-root a.cover-link"
    )
    rating = (
        "#interest_sectl > div.rating_wrap.clearbox > div.rating_self.clearfix > strong"
    )


async def test_pyppeteer(pyppeteer):
    page = await pyppeteer.new_page()
    await page.goto(Elements.url)

    await page.type(Elements.query, "The Shawshank Redemption")
    await page.click(Elements.apply)

    await page.waitfor(Elements.result)
    await page.click(Elements.result)

    await page.waitfor(Elements.rating)
    rating = await page.get_value(Elements.rating)
    assert rating == 0
```


# License
Distributed under the terms of the [MIT](http://opensource.org/licenses/MIT) license, pytest-pyppeteer is free and open source software.


# Issues
If you encounter any problems, please [file an issue](https://github.com/luizyao/pytest-pyppeteer/issues) along with a detailed description.

# Changelog

<a name="next"></a>
## 0.2.1 (2020-10-16)

### Fixed

- 🐛 fix issue #18


<a name="0.2.0"></a>
## 0.2.0 (2020-10-02)

### Added

- ✨ support to start the browser maximized
- ✨ add options marker
- ✨ add errors module
- ✨ add &quot;--executable-path&quot; command line option

### Fixed

- 🐛 fix unprintable error class
- 🐛 fix different &quot;--window-size 0 0&quot; behaviors between mac and windows


