Socket
Socket
Sign inDemoInstall

assert-element

Package Overview
Dependencies
1
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    assert-element

Simple TestCase assertion that finds element based on it's path and check if it equals with given content.


Maintainers
1

Readme

============================= Django assert element

.. image:: https://badge.fury.io/py/assert_element.svg :target: https://badge.fury.io/py/assert_element

.. image:: https://codecov.io/gh/PetrDlouhy/assert_element/branch/master/graph/badge.svg :target: https://codecov.io/gh/PetrDlouhy/assert_element

.. image:: https://github.com/PetrDlouhy/django-assert-element/actions/workflows/main.yml/badge.svg?event=registry_package :target: https://github.com/PetrDlouhy/django-assert-element/actions/workflows/main.yml

Simple TestCase assertion that finds element based on it's path and check if it equals with given content.

This is more useful than the default Django AssertContains because it will find the element and show differences if something changed. The test also tries to ignore differences in whitespaces as much as possible.

Other similar projects

I released this package just to realize after few days, that there are some other very similar projects:

Documentation

The full documentation is at https://assert_element.readthedocs.io.

Quickstart

Install by:

.. code-block:: bash

pip install assert-element

Usage in tests:

.. code-block:: python

from assert_element import AssertElementMixin

class MyTestCase(AssertElementMixin, TestCase):
    def test_something(self):
        response = self.client.get(address)
        self.assertElementContains(
            response,
            'div[id="my-div"]',
            '<div id="my-div">My div</div>',
        )

The first attribute can be response or content itself. Second attribute is the path to the element. Third attribute is the expected content.

Running Tests

Does the code actually work?

::

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Development commands

::

pip install -r requirements_dev.txt
invoke -l

Credits

Tools used in rendering this package:

  • Cookiecutter_
  • cookiecutter-djangopackage_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _cookiecutter-djangopackage: https://github.com/pydanny/cookiecutter-djangopackage

History

0.4.0 (2023-07-21) ++++++++++++++++++

  • more readable output when assertion fails

0.3.0 (2022-09-16) ++++++++++++++++++

  • more tolerance in whitespace differences

0.2.0 (2022-09-01) ++++++++++++++++++

  • first attribute can be response or content itself

0.1.0 (2022-08-21) ++++++++++++++++++

  • First release on PyPI.

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc