News

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

1 min read

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:

$ 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.

Read Next

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!

 

Melisha Dsouza

Share
Published by
Melisha Dsouza

Recent Posts

Top life hacks for prepping for your IT certification exam

I remember deciding to pursue my first IT certification, the CompTIA A+. I had signed…

3 years ago

Learn Transformers for Natural Language Processing with Denis Rothman

Key takeaways The transformer architecture has proved to be revolutionary in outperforming the classical RNN…

3 years ago

Learning Essential Linux Commands for Navigating the Shell Effectively

Once we learn how to deploy an Ubuntu server, how to manage users, and how…

3 years ago

Clean Coding in Python with Mariano Anaya

Key-takeaways:   Clean code isn’t just a nice thing to have or a luxury in software projects; it's a necessity. If we…

3 years ago

Exploring Forms in Angular – types, benefits and differences   

While developing a web application, or setting dynamic pages and meta tags we need to deal with…

3 years ago

Gain Practical Expertise with the Latest Edition of Software Architecture with C# 9 and .NET 5

Software architecture is one of the most discussed topics in the software industry today, and…

3 years ago