Skip to main content

A (somewhat) smart locator class for Selenium.

Project description

selenium-smart-locator

Build Status Coverage Status Code Health

Class encapsulating generating of the Selenium locators.

It is designed to be simple and intuitive to use. It provides you various ways how to generate a Selenium-compatible locators. The class is usable in Selenium element queries.

loc = Locator(By.XPATH, '//foo/bar/baz')    # Old selenium way of doing it
element = s.find_element(*loc)              # Expand the tuple. That's how to use the class.

This is a basic sample of how does it work. Now come the usage samples of simplified locators:

# When you use this simple format of CSS consisting of tag name, ids and classes, it gets
# detected automatically and the result is a CSS selector. IDs and classes are optional.
Locator('div#foo.bar.baz')  # => Locator(by='css selector', locator='div#foo.bar.baz')
# When you specify a plain string and it does not get matched be the preceeding CSS detector
# it is assumed it is an XPath expression
Locator('//h1') # => Locator(by='xpath', locator='//h1')
# If you pass a Locator instance, it just goes straight through
Locator(Locator('//h1')) # => Locator(by='xpath', locator='//h1')
# If you have your own object, that implements __locator__(), then it can also be resolved
# by the class. The __locator__() must either return Locator instance or
# anything that Locator can process.
Locator(my_obj)
# You can leverage kwargs to say strategy=locator
Locator(xpath='//h1')   # => Locator(by='xpath', locator='//h1')
Locator(css='#something')   # => Locator(by='css selector', locator='#something')
Locator(by='xpath', locator='//h1')   # => Locator(by='xpath', locator='//h1')
# For your comfort, you can pass a dictionary, like it was kwargs
Locator({'by': 'xpath', 'locator': '//h1'})   # => Locator(by='xpath', locator='//h1')
# You can also use Locator's classmethods, like this:
Locator.by_css('#foo')   # => Locator(by='css selector', locator='#foo')
# Always in format Locator.by_<strategy_name>

When you have locators, you can avoid using * by using convenience methods:

l = Locator('#foo')
browser = Firefox()
element = l.find_element(browser)
elements = l.find_elements(browser)

As you can see, the number of ways how to specify the input parameters offer you a great freedom on how do you want to structure your locators. You can store them in YAML and you can use Locator to parse the entries. Or anything else.

Available selector strategies:

  • class_name

  • css

  • id

  • link_text

  • name

  • partial_link_text

  • tag

  • xpath

License

Licensed under GPLv3

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

selenium-smart-locator-0.3.0.tar.gz (19.0 kB view details)

Uploaded Source

Built Distribution

selenium_smart_locator-0.3.0-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file selenium-smart-locator-0.3.0.tar.gz.

File metadata

File hashes

Hashes for selenium-smart-locator-0.3.0.tar.gz
Algorithm Hash digest
SHA256 087e0b32238c9463afa5a83bd6ca200d80003ff52113675e811cfe62bd83fdb5
MD5 79484f2d2fc1a419ced7de8b037ccdab
BLAKE2b-256 35fa95775f7a5be070e6e2dfe6ae73f210a96359938d115194363fcbc0cf381a

See more details on using hashes here.

File details

Details for the file selenium_smart_locator-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for selenium_smart_locator-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bfa73a0156bb221b0899a9ae6c22461f977e02a96b2af15dfa73bf8b2e82f134
MD5 e76b81550fb3140cfe73688d8670d8b1
BLAKE2b-256 b5688ec90fa242f39eed8f23c7c6680e288b5e0276c7dbc95e6870fd9bd8a720

See more details on using hashes here.

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