Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon

Splinter 0.9.0, the popular web app testing tool, released!

Save for later
  • 2 min read
  • 28 Aug 2018

article-image
Splinter, the open source tool for testing web applications using Python has now leveled up to Splinter 0.9.0. Browser actions such as visiting URLs and interacting with their items can be automated.

Apart from providing a simple api, Splinter has multiple webdrivers including chrome webdriver, firefox webdriver, phantomjs webdriver, zopetest browser, and remote webdriver.
It provides support to iframe, alert and executes javascript while working with both, ajax and async javascript.

Two ways to install Splinter 0.9.0

Step 1: Install Python


In order to install Splinter, you need to make sure that Python 2.7+  is installed.

Step 2: Install Splinter


There are two ways to install Splinter:


  • Install a stable release


For an official and almost bug-free version, use the terminal:

$ [sudo] pip install splinter


  • Install under-development source-code


For splinter’s latest-and-greatest features and aren’t afraid of running under development code, run:

Unlock access to the largest independent learning library in Tech for FREE!
Get unlimited access to 7500+ expert-authored eBooks and video courses covering every tech area you can think of.
Renews at €18.99/month. Cancel anytime
$ git clone git://github.com/cobrateam/splinter.git
$ cd splinter
$ [sudo] python setup.py install



Head over to the install guide for additional notes.

Upgraded features in Splinter 0.9.0

  • Support for phantomjs is removed. With Chrome and Firefox headless, phantom is no longer needed.
  • Users can now add custom options to the chrome browser.
  • The bug related to element.find_by_text  stands resolved. When trying to do a contextual search for text, the result would include all matching text for the whole DOM instead of just those nodes that are children of the contextual node.
  • Support was added for zope.testbrowser 5+, Flask 1+, selenium 3.14.0.
  • Splinter can now handle webdriver StaleElementReferenceException.
  • The lxml and cssselect has been updated  to 4.2.4  1.0.3 respectively.


For a detailed explanation of features visitits  Github page.

Visual Studio code July 2018 release, version 1.26 is out!

OpenSSH 7.8 released!

JDK 11 First Release Candidate (RC) is out with ZGC, Epsilon and more!