Skip to main content

Web Browser automation and testing library for python with more features and simpler api than selenium

Project description

Web automation library for python for web browser automation and end to end UI testing.

wybsel provides a much feature rich automation than selenium for all kinds of automation of webpage. Since the major portion of web automation is to perform actions like click and type into webpage elements , wybsel automatically handles finding the right elements to perform the actions.

Features :

  • Use any combination of selectors like id, name, text, css etc to perform actions on elements with one line of code.

  • Automate and test pages loaded dynamically by javascript.

  • Click any button or link without having to worry about finding the element first or knowing css_selectors , xpath etc

  • Smart scoring algorithm which finds the best matching elements on which you want to perform the action .

  • Automation designed to work even in case of webpages with dynamically changing id and classname

  • Immensely minimizes the code required for performing input actions like clicks and keyboard actions.

  • Get webpage source , cookies , total tabs , webpage title etc..

  • Simulate key presses and special key combinations

  • Bidirectional scrolling

  • Perform an action on webpage elements by applying various filters to select the elements .

  • Perfrom action on multiple elements at once.

  • If certain elements don’t have text or visible property , then use either their id , class , css_selector , xpath , tag etc.

  • The entire automation process can be made without having to open the browser window i.e in the background as a console process (see docs for more details )


Installation :

pip install wybsel

If “No distribution found error occurs” just update setuptools using pip install --upgrade setuptools

Quickstart :

Demo code 0 :

from wybsel import Browser
web = Browser()
web.go_to('google.com')
web.type('hello its me')  # or web.press(web.Key.SHIFT + 'hello its me')
web.press(web.Key.ENTER)
web.go_back()
web.click('Sign in')
web.type('mymail@gmail.com' , into='Email')
web.click('NEXT' , tag='span')
web.type('mypassword' , into='Password' , id='passwordFieldId')
web.click('NEXT' , tag='span') # you are logged in . woohoooo

Demo code 1 :

If multiple buttons with similar properties are to be clicked at once

web = Browser()
web.go_to('siteurl.com')
web.click('buttontext' , multiple = True)

Demo code 2 :

If there are multiple elements and you want to perform action on one of them

web = Browser()
web.go_to('siteurl.com')

# types the text into the 3rd input element when there are multiple input elements with form-input class
web.type('im robo typing' , number = 3 , classname="form-input" )

web.click('Post')

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

wybsel-0.5.6.tar.gz (12.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wybsel-0.5.6-py3.8.egg (12.9 MB view details)

Uploaded Egg

File details

Details for the file wybsel-0.5.6.tar.gz.

File metadata

  • Download URL: wybsel-0.5.6.tar.gz
  • Upload date:
  • Size: 12.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.7

File hashes

Hashes for wybsel-0.5.6.tar.gz
Algorithm Hash digest
SHA256 98cfdcd3ac290a3e1f8561cb9789d2939d702b0ee42c31370d86a68c8f96c16e
MD5 24621f58972e029144c7f06debc351d2
BLAKE2b-256 39b38bf6a8f867ced7008c87e22c7698c8f3faa593f0a32f69ce14b71f6c74a5

See more details on using hashes here.

File details

Details for the file wybsel-0.5.6-py3.8.egg.

File metadata

  • Download URL: wybsel-0.5.6-py3.8.egg
  • Upload date:
  • Size: 12.9 MB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.7

File hashes

Hashes for wybsel-0.5.6-py3.8.egg
Algorithm Hash digest
SHA256 c565b97db282930a0585f6f3d54d401b205e2a4373574d05cc0731b661298d9b
MD5 381229a2ed9946c4d46414e08455afa3
BLAKE2b-256 87d2a3d2bdbaf2e0a0444de40750ae6151116a42c817a0752faba614a4a2b41d

See more details on using hashes here.

Supported by

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