Skip to main content

A simple set of BeautifulSoup4 unit test helpers

Project description

Usage

>>> import soup_helpers as sh
>>> content = '<head><title>My Title</title></head>'
>>> sh.assertPageTitleEquals(content, title='My Title')

Misc Methods

>>> assertLinkWithTextExists(content=content, url='http://www.example.com', text='My Link')
>>> assertPageTitleEquals(content, title='My Title')
>>> assertTagWithTextExists(content, tag='p', text='some text')

Form Methods

>>> assertFormFieldExists(content, tag='input', field_name='my_field')
>>> assertFormFieldExists(content, tag='select', field_name='my_field')
>>> assertFormFieldExists(content, tag='textarea', field_name='my_field')
>>> assertInputValueEquals(content, field_name='my_field', value='my value')
>>> assertInputValueEquals(content, field_name='my_field', value=None)
>>> assertSelectHasOptions(content, field_name='my_field', options_tuple=('One', 'Two'))
>>> assertSelectHasSelectedOption(content, field_name='my_field', text='my selected text')
>>> assertTextAreaContainsText(content, field_name='my_field', text='some textarea text')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

soup_helpers-0.0.5.zip (4.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page