File: more_info.rst

package info (click to toggle)
behave 1.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,876 kB
  • sloc: python: 19,835; makefile: 136; sh: 18
file content (186 lines) | stat: -rw-r--r-- 6,562 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
.. _id.appendix.more_info:

More Information about Behave
==============================================================================


Tutorials
------------------------------------------------------------------------------

For new users, that want to read, understand and explore the concepts in Gherkin
and `behave`_ (after reading the behave documentation):

* "`Behave by Example <http://behave.github.io/behave.example/>`_"
  (on `github <https://github.com/behave/behave.example>`_)

The following small tutorials provide an introduction how you use `behave`_
in a specific testing domain:

* Phillip Johnson, `Getting Started with Behavior Testing in Python with Behave`_
* `Bdd with Python, Behave and WebDriver`_
* Wayne Witzel III, `Using Behave with Pyramid`_, 2014-01-10.

.. _`Getting Started with Behavior Testing in Python with Behave`: https://semaphoreci.com/community/tutorials/getting-started-with-behavior-testing-in-python-with-behave
.. _`Bdd with Python, Behave and WebDriver`: https://testingbot.com/support/getting-started/behave.html
.. _`Using Behave with Pyramid`:    https://www.safaribooksonline.com/blog/2014/01/10/using-behave-with-pyramid/

.. warning::

    A word of caution if you are new to **"behaviour-driven development" (BDD)**.
    In general, you want to avoid "user interface" (UI) details in your
    scenarios, because they describe **how something is implemented**
    (in this case the UI itself), like:

    * ``press this button``
    * then ``enter this text into the text field``
    * ...

    In **BDD** (or testing in general), you should describe **what should be done**
    (meaning the intention). This will make your scenarios much more robust
    and stable because you can change the underlying implementation of:

    * the "system under test" (SUT) or
    * the test automation layer, that interacts with the SUT.

    without changing the scenarios.


Books
------------------------------------------------------------------------------

`Behave`_ is covered in the following books:

..

    [TDD-Python] Harry Percival,
    `Test-Driven Web Development with Python`_, O'Reilly, June 2014,
    `Appendix E: BDD <http://chimera.labs.oreilly.com/books/1234000000754/ape.html>`_
    (covers behave)

.. _`Test-Driven Web Development with Python`: http://chimera.labs.oreilly.com/books/1234000000754


Presentation Videos
------------------------------------------------------------------------------

* Benno Rice: `Making Your Application Behave`_ (30min),
  2012-08-12, PyCon Australia.

* Selenium: `First behave python tuorial with selenium`_ (8min), 2015-01-28,
  http://www.seleniumframework.com/python-basic/first-behave-gherkin/

* Jessica Ingrasselino: `Automation with Python and Behave`_ (67min), 2015-12-16

* `Selenium Python Webdriver Tutorial - Behave (BDD)`_ (14min), 2016-01-21


.. hidden:

    PREPARED:
    ---------------------

    .. ifconfig:: not supports_video

        * Benno Rice: `Making Your Application Behave`_ (30min),
          PyCon Australia, 2012-08-12

        * Selenium: `First behave python tuorial with selenium`_ (8min), 2015-01-28,
          http://www.seleniumframework.com/python-basic/first-behave-gherkin/

        * Jessica Ingrasselino: `Automation with Python and Behave`_ (67min), 2015-12-16

        * `Selenium Python Webdriver Tutorial - Behave (BDD)`_ (14min), 2016-01-21


        .. hint::

            Manually install `sphinxcontrib-youtube`_
            (from "youtube" subdirectory in sphinx-extensions bundle)
            to have embedded videos on this page (when this page is build).


    .. ifconfig:: supports_video

        Benno Rice: `Making Your Application Behave`_
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        :Conference: PyCon Australia
        :Date: 2012-08-12
        :Duration: 30min

        ..  youtube:: u8BOKuNkmhg
            :width: 600
            :height: 400

        Selenium: `First behave python tuorial with selenium`_
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        :Date: 2015-01-28
        :Duration: 8min

        ..  youtube:: D24_QrGUCFk
            :width: 600
            :height: 400

        RELATED: http://www.seleniumframework.com/python-basic/what-is-python/

        Jessica Ingrasselino: `Automation with Python and Behave`_
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        :Date: 2015-12-16
        :Duration: 67min

        ..  youtube:: e78c7h6DRDQ
            :width: 600
            :height: 400

        `Selenium Python Webdriver Tutorial - Behave (BDD)`_
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        :Date: 2016-01-21
        :Duration: 14min

        ..  youtube:: mextSo0UExc
            :width: 600
            :height: 400


.. _`Making Your Application Behave`: https://www.youtube.com/watch?v=u8BOKuNkmhg
.. _`First behave python tuorial with selenium`: https://www.youtube.com/watch?v=D24_QrGUCFk
.. _`Automation with Python and Behave`: https://www.youtube.com/watch?v=e78c7h6DRDQ
.. _`Selenium Python Webdriver Tutorial - Behave (BDD)`: https://www.youtube.com/watch?v=mextSo0UExc

.. _sphinxcontrib-youtube: https://bitbucket.org/birkenfeld/sphinx-contrib


Tool-oriented Tutorials
------------------------------------------------------------------------------

JetBrains PyCharm:

* Blog: `In-Depth Screencast on Testing`_ (2016-04-11; video offset=2:10min)
* Docs: `BDD Testing Framework Support in PyCharm 2016.1
  <https://www.jetbrains.com/help/pycharm/2016.1/bdd-testing-framework.html>`_


.. _`Getting Started with PyCharm`: https://www.youtube.com/playlist?list=PLQ176FUIyIUZ1mwB-uImQE-gmkwzjNLjP
.. _`PyCharm In-Depth: Testing`: https://youtu.be/nmBbR97Vsv8?list=PLQ176FUIyIUZ1mwB-uImQE-gmkwzjNLjP
.. _`In-Depth Screencast on Testing`: https://blog.jetbrains.com/pycharm/2016/04/in-depth-screencast-on-testing/



Find more Information
------------------------------------------------------------------------------

.. seealso::

    * google:`python-behave examples <https://www.google.com/?q=python-behave%20examples>`_
    * google:`python-behave tutorials <https://www.google.com/?q=python-behave%20tutorials>`_
    * google:`python-behave videos <https://www.google.com/?q=python-behave%20videos>`_


.. _Behave:     https://github.com/behave/behave
.. _behave:     https://github.com/behave/behave
.. _Selenium:   http://docs.seleniumhq.org/
.. _behave4cmd:     https://github.com/behave/behave4cmd
.. _behave-django: https://github.com/behave/behave-django