Skip to content

Commit

Permalink
Release Toolium 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rgonalo committed Sep 12, 2017
1 parent 70b3add commit b92e1a9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Toolium Changelog
v1.3.0
------

*Release date: In development*
*Release date: 2017-09-12*

- Add the dynamic environment.
- Add Behave dynamic environment (more info in `Docs <http://toolium.readthedocs.io/en/latest/bdd_integration.html#behave-dynamic-environment>`_)
- Fix visual screenshot filename error when behave feature name contains :
- Add a config property 'explicitly_wait' in [Driver] section to set the default timeout used in *wait_until* methods
- When reuse_driver is true using behave, driver is initialized in *before_feature* method and closed in *after_feature*
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.6-dev
1.3.0
17 changes: 11 additions & 6 deletions docs/bdd_integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,17 @@ Behave - Dynamic Environment
----------------------------

Optionally, some actions (labels) are defined in the Feature description as:
• Actions Before the Feature:
• Actions Before each scenario:
• Actions after each scenario:
• Actions after the Feature:

With a steps list executed in each moment identified with the label as the environment.py file. These steps are defined similar to others one.
* Actions Before the Feature:
* Actions Before each scenario:
* Actions after each scenario:
* Actions after the Feature:

With a steps list executed in each moment identified with the label as the environment.py file. These steps are defined
similar to others one.

Each step block is separated by a blank line.

Behave keywords are supported (Given, When, Then, And, But, Check, Setup).

Example::
Expand Down Expand Up @@ -113,11 +117,12 @@ Example::
And step with another step executed dynamically
And wait 4 seconds


All steps type are allowed:
- with tables
- executing another step internally
And in case that a step has failed a exception is threw... Ex: waitrty 3 seconds step

And in case that a step has failed a exception is threw, i.e. 'waitrty 3 seconds' step

Lettuce
~~~~~~~
Expand Down

0 comments on commit b92e1a9

Please sign in to comment.