.. Copyright 2012 splinter authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. .. meta:: :description: New splinter features on version 0.3. :keywords: splinter 0.3, python, news, documentation, tutorial, web application [0.3.0] ======= Features -------- - support for browser extensions on :doc:`Firefox driver ` - support for Firefox profiles on :doc:`Firefox driver ` - support for mouse over and mouse out on :doc:`Chrome driver ` - support for finding and clicking links by partial :meth:`text ` and :meth:`href ` - support for :meth:`finding by value ` Documentation improvements -------------------------- - complete :doc:`API reference ` - instructions on :doc:`new drivers creation ` Backward incompatible changes ----------------------------- - changes on :doc:`cookies manipulation `. Affects only who used :meth:`cookies.delete ` passing the ``cookie`` keyword. Before version **0.3**: .. highlight:: python :: >>> driver.cookies.delete(cookie='whatever') Now: .. highlight:: python :: >>> driver.cookies.delete('whatever') Bugfixes -------- - Fixed cookies behavior on Chrome driver (it was impossible to delete one cookie, Chrome was always deleting all cookies)