SlideShare une entreprise Scribd logo
1  sur  60
Télécharger pour lire hors ligne
AUTOMATED
                                                        WEB ACCEPTANCE TESTING
                                                        WITH BEHAT
                                                                         Fabian Kiss
                                                                         YMC AG | May 2012




Picture by viZZZual.com, licensed under the CC BY 2.0
IN AGILE
TESTING




           Picture by Sheffield Tiger, licensed under the CC BY 2.0
MIKE COHN'S AGILE TESTING PYRAMID
Succeeding with Agile: Software Development Using Scrum, Addison-Wesley




                                          at ed
                                     om
                                  ut s
                                 A t
                                   t es
MIKE COHN'S AGILE TESTING PYRAMID
Succeeding with Agile: Software Development Using Scrum, Addison-Wesley




                                       UI

                                   Service


                                     Unit
MIKE COHN'S AGILE TESTING PYRAMID
Succeeding with Agile: Software Development Using Scrum, Addison-Wesley




                                                      least investment
                                       UI

                                   Service
                                                              most investment

                                     Unit
MIKE COHN'S AGILE TESTING PYRAMID
Succeeding with Agile: Software Development Using Scrum, Addison-Wesley




                                                      least investment
                                       UI

                                   Service
                                                              most investment

                                     Unit
BRIAN MARICK'S AGILE TESTING MATRIX
http://www.exampler.com/old-blog/2003/08/21/




                                                 tests
                                            ated
                                    ut om
                         al +a
                       nu
                    Ma
BRIAN MARICK'S AGILE TESTING MATRIX
http://www.exampler.com/old-blog/2003/08/21/




                    Acceptance                 Usability
                      Testing                   Testing
                        ...                       ...

                                           Performance
                   Unit Testing
                                             Testing
                        ...
                                                …
BRIAN MARICK'S AGILE TESTING MATRIX
http://www.exampler.com/old-blog/2003/08/21/


                                          Business-facing

                                 Acceptance          Usability
          Support programming




                                   Testing            Testing




                                                                  Critique product
                                     ...                ...

                                                    Performance
                                Unit Testing
                                                      Testing
                                     ...
                                                         …

                                        Technology-facing
BRIAN MARICK'S AGILE TESTING MATRIX
http://www.exampler.com/old-blog/2003/08/21/


                                          Business-facing

                                 Acceptance          Usability
          Support programming




                                   Testing            Testing




                                                                  Critique product
                                     ...                ...

                                                    Performance
                                Unit Testing
                                                      Testing
                                     ...
                                                         …

                                        Technology-facing
tests
                     ated
             ut om
     al +a
   nu
Ma
tests
                     ated
             ut om
     al +a
   nu
Ma
BRIAN MARICK'S AGILE TESTING MATRIX
http://www.exampler.com/old-blog/2003/08/21/




                    Acceptance                 Usability
                      Testing                   Testing
                        ...                       ...

                                           Performance
                   Unit Testing
                                             Testing
                        ...
                                                …
BRIAN MARICK'S AGILE TESTING MATRIX
http://www.exampler.com/old-blog/2003/08/21/




                    Acceptance                 Usability
        BDD           Testing                   Testing
                        ...                       ...

                                           Performance
      TDD          Unit Testing
                                             Testing
       /BDD             ...
                                                …
BDD
Specification-oriented BDD

BDD

      Scenario-oriented BDD
Specification-oriented BDD   RSpec


BDD

      Scenario-oriented BDD
Specification-oriented BDD           RSpec


BDD
                                   Cucumber
      Scenario-oriented BDD
                                   Behat
Specification-oriented BDD           RSpec


BDD
                                   Cucumber        Gherkin DSL

      Scenario-oriented BDD
                                   Behat
Specification-oriented BDD           RSpec


BDD
                                   Cucumber        Gherkin DSL

      Scenario-oriented BDD
                                   Behat
Specification-oriented BDD           RSpec

                                           ...
BDD
                                   Cucumber        Gherkin DSL

      Scenario-oriented BDD
                                   Behat

                                   ...
GHERKIN SYNTAX + SEMANTICS
http://docs.behat.org/guides/1.gherkin.html




 Scenario: Some determinable business situation
     Given some precondition
       And some other precondition
      When some action by the actor
       And some other action
      Then some testable outcome is achieved
       And something else we can check happens too 
GHERKIN SYNTAX + SEMANTICS
http://docs.behat.org/guides/1.gherkin.html




 Scenario: Some determinable business situation
     Given some precondition
       And some other precondition
      When some action by the actor
       And some other action
      Then some testable outcome is achieved
       And something else we can check happens too 
GHERKIN SYNTAX + SEMANTICS
http://docs.behat.org/guides/1.gherkin.html




 Scenario: Some determinable business situation
     Given some precondition
       And some other precondition
      When some action by the actor
       And some other action
      Then some testable outcome is achieved
       And something else we can check happens too 
GHERKIN SYNTAX + SEMANTICS
http://docs.behat.org/guides/1.gherkin.html




 Scenario: Some determinable business situation
     Given some precondition
       And some other precondition
      When some action by the actor
       And some other action
      Then some testable outcome is achieved
       And something else we can check happens too 
GHERKIN SYNTAX + SEMANTICS
http://docs.behat.org/guides/1.gherkin.html




 Scenario: Some determinable business situation
     Given some precondition
       And some other precondition
      When some action by the actor
       And some other action
      Then some testable outcome is achieved
       And something else we can check happens too 
GHERKIN SYNTAX + SEMANTICS
http://docs.behat.org/guides/1.gherkin.html




 Scenario: Some determinable business situation
     Given some precondition
       And some other precondition
      When some action by the actor
       And some other action
      Then some testable outcome is achieved
       And something else we can check happens too 
GHERKIN EXAMPLE
http://docs.behat.org/guides/1.gherkin.html




     Scenario: Wilson posts to his own blog
       Given I am logged in as Wilson
       When I try to post to "Expensive Therapy"
       Then I should see "Your article was published."

     Scenario: Wilson fails to post to somebody else's blog
       Given I am logged in as Wilson
       When I try to post to "Greg's anti­tax rants"
       Then I should see "Hey! That's not your blog!"
GHERKIN EXAMPLE
http://docs.behat.org/guides/1.gherkin.html



       Feature

     Scenario: Wilson posts to his own blog
       Given I am logged in as Wilson
       When I try to post to "Expensive Therapy"
       Then I should see "Your article was published."

     Scenario: Wilson fails to post to somebody else's blog
       Given I am logged in as Wilson
       When I try to post to "Greg's anti­tax rants"
       Then I should see "Hey! That's not your blog!"
STEPS & STEP DEFINITIONS
http://docs.behat.org/quick_intro.html#basic-usage




                     Given some precondition




              /**
               * @Given /^some precondition$/
               */
              public function somePrecondition()
              {
                  //...
              }
STEPS & STEP DEFINITIONS
http://docs.behat.org/quick_intro.html#basic-usage




                     Given some precondition
Step


Step
              /**
definition
               * @Given /^some precondition$/
               */
              public function somePrecondition()
              {
                  //...
              }
STEPS & STEP DEFINITIONS
http://docs.behat.org/quick_intro.html#basic-usage




                     Given some precondition
Step
                                      Matching
Step
              /**
definition
               * @Given /^some precondition$/
               */
              public function somePrecondition()
              {
                  //...
              }
                                 Run
STEP ARGUMENTS
http://docs.behat.org/quick_intro.html#some-more-behat-basics




       When I try to post to "Expensive Therapy"




         /**
          * @When /^I try to post to "([^"]*)"$/
          */
         public function iTryToPostTo($site)
         {
             //...
         }
STEP ARGUMENTS
http://docs.behat.org/quick_intro.html#some-more-behat-basics




       When I try to post to "Expensive Therapy"


                                                    Argument

         /**
          * @When /^I try to post to "([^"]*)"$/
          */
         public function iTryToPostTo($blog)
         {
             //...
         }
SCENARIO BACKGROUNDS
http://docs.behat.org/guides/1.gherkin.html#backgrounds




     Background:
       Given I am logged in as Wilson

     Scenario: Wilson posts to his own blog
       When I try to post to "Expensive Therapy"
       Then I should see "Your article was published."

     Scenario: Wilson fails to post to somebody else's blog
       When I try to post to "Greg's anti­tax rants"
       Then I should see "Hey! That's not your blog!"
SCENARIO BACKGROUNDS
http://docs.behat.org/guides/1.gherkin.html#backgrounds




     Background:
       Given I am logged in as Wilson

     Scenario: Wilson posts to his own blog
       When I try to post to "Expensive Therapy"
       Then I should see "Your article was published."

     Scenario: Wilson fails to post to somebody else's blog
       When I try to post to "Greg's anti­tax rants"
       Then I should see "Hey! That's not your blog!"
SCENARIO OUTLINES
http://docs.behat.org/guides/1.gherkin.html#scenario-outlines




  Scenario Outline: Wilson posts to a blog
    Given I am logged in as Wilson
    When I try to post to "<blog>"
    Then I should see "<authorization>"

    Examples:
     | blog                  | authorization               |
     | Expensive Therapy     | Your article was published. |
     | Greg's anti­tax rants | Hey! That's not your blog!  |
SCENARIO OUTLINES
http://docs.behat.org/guides/1.gherkin.html#scenario-outlines




  Scenario Outline: Wilson posts to a blog
    Given I am logged in as Wilson
    When I try to post to "<blog>"                              x2
    Then I should see "<authorization>"

    Examples:
     | blog                  | authorization               |
     | Expensive Therapy     | Your article was published. |
     | Greg's anti­tax rants | Hey! That's not your blog!  |
STEP TABLES
http://docs.behat.org/guides/1.gherkin.html#tables




            Scenario: Wilson posts to a blog
              Given I am logged in as Wilson
              When I try to post to:
               | blog                  |
               | Expensive Therapy     |
               | Greg's anti­tax rants |
              Then I should see an authorization outcome
STEP TABLES
http://docs.behat.org/guides/1.gherkin.html#tables




            Scenario: Wilson posts to a blog
              Given I am logged in as Wilson
              When I try to post to:
               | blog                  |     x2
               | Expensive Therapy     |
               | Greg's anti­tax rants |
              Then I should see an authorization outcome
ACCESSING THE WEB


                    Picture by Misserion, licensed under the CC BY 2.0
MINK API
http://mink.behat.org/

                             Driver object
 $client = new SeleniumClient($host, $port);
 $driver = new BehatMinkDriverSeleniumDriver(
     'firefox', 'base_url', $client
 );

                            Session object
 $session = new BehatMinkSession($driver);
 $session­>start();
 $session­>visit('http://my_project.dev/some_page.php')


                         Exemplary interaction
 $page = $session­>getPage();
 $elementByCss = $page­>find('css', 'h3 > a');
 $elementByCss­>click();
MINK API
http://mink.behat.org/

                             Driver object
 $client = new SeleniumClient($host, $port);
 $driver = new BehatMinkDriverSeleniumDriver(
     'firefox', 'base_url', $client
 );

                            Session object
 $session = new BehatMinkSession($driver);
 $session­>start();
 $session­>visit('http://my_project.dev/some_page.php')


                         Exemplary interaction
 $page = $session­>getPage();
 $elementByCss = $page­>find('css', 'h3 > a');
 $elementByCss­>click();
MINK API
http://mink.behat.org/

                             Driver object
 $client = new SeleniumClient($host, $port);
 $driver = new BehatMinkDriverSeleniumDriver(
     'firefox', 'base_url', $client
 );                                       Sahi, Goutte, Zombie.js
                            Session object
 $session = new BehatMinkSession($driver);
 $session­>start();
 $session­>visit('http://my_project.dev/some_page.php')


                         Exemplary interaction
 $page = $session­>getPage();
 $elementByCss = $page­>find('css', 'h3 > a');
 $elementByCss­>click();
MINK API
http://mink.behat.org/

                             Driver object
 $client = new SeleniumClient($host, $port);
 $driver = new BehatMinkDriverSeleniumDriver(
     'firefox', 'base_url', $client
 );                                       Sahi, Goutte, Zombie.js
                            Session object
 $session = new BehatMinkSession($driver);
 $session­>start();
 $session­>visit('http://my_project.dev/some_page.php')


                         Exemplary interaction
 $page = $session­>getPage();
 $elementByCss = $page­>find('css', 'h3 > a');
 $elementByCss­>click();
MINK API
http://mink.behat.org/

                             Driver object
 $client = new SeleniumClient($host, $port);
 $driver = new BehatMinkDriverSeleniumDriver(
     'firefox', 'base_url', $client
 );                                       Sahi, Goutte, Zombie.js
                            Session object
 $session = new BehatMinkSession($driver);
 $session­>start();
 $session­>visit('http://my_project.dev/some_page.php')


                         Exemplary interaction
 $page = $session­>getPage();
 $elementByCss = $page­>find('css', 'h3 > a');
 $elementByCss­>click();
BEHAT REPORT
~/Behat$ behat features/blogpost.feature

Feature: Blog posting
  As a blogger
  I want to post an article to a blog

  Scenario: Wilson posts to his own blog            # features/blogpost.feature:5
    Given I am logged in as "Wilson"                # FeatureContext::iAmLoggedInAs()
    When I try to post to "Expensive Therapy"       # FeatureContext::iTryToPostTo()
    Then I should see "Your article was published." # FeatureContext::iShouldSee()

  Scenario: Wilson fails to post to somebody else's blog # features/blogpost.feature:10
    Given I am logged in as "Wilson"                     # FeatureContext::iAmLoggedInAs()
    When I try to post to "Greg's anti­tax rants"        # FeatureContext::iTryToPostTo()
      Blog "Greg's anti­tax rants" does not exist
    Then I should see "Hey! That's not your blog!"       # FeatureContext::iShouldSee()

2 scenarios (1 passed, 1 failed)
6 steps (4 passed, 1 skipped, 1 failed)
BEHAT REPORT
~/Behat$ behat features/blogpost.feature ­­format pretty

Feature: Blog posting
  As a blogger
  I want to post an article to a blog

  Scenario: Wilson posts to his own blog            # features/blogpost.feature:5
    Given I am logged in as "Wilson"                # FeatureContext::iAmLoggedInAs()
    When I try to post to "Expensive Therapy"       # FeatureContext::iTryToPostTo()
    Then I should see "Your article was published." # FeatureContext::iShouldSee()

  Scenario: Wilson fails to post to somebody else's blog # features/blogpost.feature:10
    Given I am logged in as "Wilson"                     # FeatureContext::iAmLoggedInAs()
    When I try to post to "Greg's anti­tax rants"        # FeatureContext::iTryToPostTo()
      Blog "Greg's anti­tax rants" does not exist
    Then I should see "Hey! That's not your blog!"       # FeatureContext::iShouldSee()

2 scenarios (1 passed, 1 failed)
6 steps (4 passed, 1 skipped, 1 failed)




               default formatter (“pretty”)

               all formatters:
               http://docs.behat.org/guides/6.cli.html#format-options
CHALLENGES...
Picture by Marjan Krebelj, licensed under the CC BY 2.0




                                                DEVELOPERS WRITE
                                                       SCENARIOS
DEVELOPERS WRITE
                                                                 SCENARIOS
Picture by Marjan Krebelj, licensed under the CC BY 2.0




                                                            AN ARTIFACT ASKED FOR?
                                                               UNDERSTANDABILITY?
SCENARIO ABSTRACTION LEVEL




                             Picture by Conor Lawless, licensed under the CC BY 2.0
Picture by Conor Lawless, licensed under the CC BY 2.0
SCENARIO ABSTRACTION LEVEL                                       t name”
                                         t name into field “firs
                             fill my firs                        name”
When                                                 field “last 
              VS.
     I              Wh en I               name into 
the f fill                    ill my last 
     or m           When I f
                                   ..
                    When I fill .
REDUNDANCY




Picture by Rob Faulkner, licensed under the CC BY 2.0
REDUNDANCY




                                        Picture by Rob Faulkner, licensed under the CC BY 2.0
LIMITED: GHERKIN'S REUSE CAPABILITIES
LIMITED: UNDERSTANDING OF THOSE
Picture by Earls37a, licensed under the CC BY 2.0




TIME-CONSUMING REFACTORING
Picture by Earls37a, licensed under the CC BY 2.0




EXECUTION IN REAL-TIME
                         TIME-CONSUMING REFACTORING
COMPLEX INFRASTRUCTURE




                         Picture by Domenico Nardone, licensed under the CC BY 2.0
Picture by Domenico Nardone, licensed under the CC BY 2.0
COMPLEX INFRASTRUCTURE
Behat   Mink   Driver   Browser Emulator   Browser
FURTHER REFERENCES:
   http://www.softwarequalityconnection.com/2011/08/how-to-improve-communication-between-qa-and-development/
   http://dannorth.net/introducing-bdd/
   http://www.infoq.com/news/2011/02/BDD-ATDD
   http://www.slideshare.net/headrevision/the-concept-of-behaviordriven-development
   http://www.slideshare.net/everzet/bdd-in-symfony2




SOME BEST PRACTICES:
   http://www.agileengineeringdesign.com/2012/01/7-deadly-sins-of-automated-software-testing/
   http://elabs.se/blog/15-you-re-cuking-it-wrong
   http://www.engineyard.com/blog/2009/15-expert-tips-for-using-cucumber/
   http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/

Contenu connexe

En vedette

初探行为驱动开发(Bdd)
初探行为驱动开发(Bdd)初探行为驱动开发(Bdd)
初探行为驱动开发(Bdd)
YuLei Liao
 

En vedette (20)

I put on my mink and wizard behat (talk)
I put on my mink and wizard behat (talk)I put on my mink and wizard behat (talk)
I put on my mink and wizard behat (talk)
 
So What Do Cucumbers Have To Do With Testing
So What Do Cucumbers Have To Do With TestingSo What Do Cucumbers Have To Do With Testing
So What Do Cucumbers Have To Do With Testing
 
Best Practices for Protected Culture: Eggplant and cucumbers
Best Practices for Protected Culture: Eggplant and cucumbers Best Practices for Protected Culture: Eggplant and cucumbers
Best Practices for Protected Culture: Eggplant and cucumbers
 
[BDD] Introduction to Behat (PL)
[BDD] Introduction to Behat (PL)[BDD] Introduction to Behat (PL)
[BDD] Introduction to Behat (PL)
 
Behat - human-readable automated testing
Behat - human-readable automated testingBehat - human-readable automated testing
Behat - human-readable automated testing
 
BDD in PHP - Behat
BDD in PHP - BehatBDD in PHP - Behat
BDD in PHP - Behat
 
Acceptance & Integration Testing With Behat (PBC11)
Acceptance & Integration Testing With Behat (PBC11)Acceptance & Integration Testing With Behat (PBC11)
Acceptance & Integration Testing With Behat (PBC11)
 
Behaviour Driven Development (BDD) With Apex on Force.com
Behaviour Driven Development (BDD) With Apex on Force.comBehaviour Driven Development (BDD) With Apex on Force.com
Behaviour Driven Development (BDD) With Apex on Force.com
 
初探行为驱动开发(Bdd)
初探行为驱动开发(Bdd)初探行为驱动开发(Bdd)
初探行为驱动开发(Bdd)
 
I put on my mink and wizard behat (tutorial)
I put on my mink and wizard behat (tutorial)I put on my mink and wizard behat (tutorial)
I put on my mink and wizard behat (tutorial)
 
PHPSpec & Behat: Two Testing Tools That Write Code For You (#phptek edition)
PHPSpec & Behat: Two Testing Tools That Write Code For You (#phptek edition)PHPSpec & Behat: Two Testing Tools That Write Code For You (#phptek edition)
PHPSpec & Behat: Two Testing Tools That Write Code For You (#phptek edition)
 
The concept of Behavior-Driven Development
The concept of Behavior-Driven DevelopmentThe concept of Behavior-Driven Development
The concept of Behavior-Driven Development
 
Specification-By-Example with Gherkin
Specification-By-Example with GherkinSpecification-By-Example with Gherkin
Specification-By-Example with Gherkin
 
ATDD with Behat and Selenium (LDNSE6)
ATDD with Behat and Selenium (LDNSE6)ATDD with Behat and Selenium (LDNSE6)
ATDD with Behat and Selenium (LDNSE6)
 
Test Automation With Cucumber JVM, Selenium, and Mocha
Test Automation With Cucumber JVM, Selenium, and MochaTest Automation With Cucumber JVM, Selenium, and Mocha
Test Automation With Cucumber JVM, Selenium, and Mocha
 
Behat bdd training (php) course slides pdf
Behat bdd training (php) course slides pdfBehat bdd training (php) course slides pdf
Behat bdd training (php) course slides pdf
 
Tutorial: Implementing Specification-By-Example with Gherkin
Tutorial: Implementing Specification-By-Example with GherkinTutorial: Implementing Specification-By-Example with Gherkin
Tutorial: Implementing Specification-By-Example with Gherkin
 
Building and deploying PHP applications with Phing
Building and deploying PHP applications with PhingBuilding and deploying PHP applications with Phing
Building and deploying PHP applications with Phing
 
Migrating to Symfony 3.0
Migrating to Symfony 3.0Migrating to Symfony 3.0
Migrating to Symfony 3.0
 
New Symfony Tips & Tricks (SymfonyCon Paris 2015)
New Symfony Tips & Tricks (SymfonyCon Paris 2015)New Symfony Tips & Tricks (SymfonyCon Paris 2015)
New Symfony Tips & Tricks (SymfonyCon Paris 2015)
 

Similaire à Web Acceptance Testing with Behat

Tce automation-d4-110102123012-phpapp01
Tce automation-d4-110102123012-phpapp01Tce automation-d4-110102123012-phpapp01
Tce automation-d4-110102123012-phpapp01
Haggai Philip Zagury
 
Automated Conveyor Inspection Services
Automated Conveyor Inspection ServicesAutomated Conveyor Inspection Services
Automated Conveyor Inspection Services
Don Tassic
 
Rational App Scan&Policy Tester
Rational App Scan&Policy TesterRational App Scan&Policy Tester
Rational App Scan&Policy Tester
Kristina O'Regan
 
Gabriele Lana: Testing Web Applications
Gabriele Lana: Testing Web ApplicationsGabriele Lana: Testing Web Applications
Gabriele Lana: Testing Web Applications
Francesco Fullone
 
IBM Rational App Scan Tester Edition and Quality Manager
IBM Rational App Scan Tester Edition and Quality ManagerIBM Rational App Scan Tester Edition and Quality Manager
IBM Rational App Scan Tester Edition and Quality Manager
Александр Шамрай
 
Testing in an Open Source Middleware Platform Space The WSO2 Way.
Testing in an Open Source Middleware Platform Space  The WSO2 Way.Testing in an Open Source Middleware Platform Space  The WSO2 Way.
Testing in an Open Source Middleware Platform Space The WSO2 Way.
WSO2
 
Oracle formstutorial
Oracle formstutorialOracle formstutorial
Oracle formstutorial
bhanu_mca
 

Similaire à Web Acceptance Testing with Behat (20)

Tce automation-d4-110102123012-phpapp01
Tce automation-d4-110102123012-phpapp01Tce automation-d4-110102123012-phpapp01
Tce automation-d4-110102123012-phpapp01
 
Automated Conveyor Inspection Services
Automated Conveyor Inspection ServicesAutomated Conveyor Inspection Services
Automated Conveyor Inspection Services
 
Rational App Scan&Policy Tester
Rational App Scan&Policy TesterRational App Scan&Policy Tester
Rational App Scan&Policy Tester
 
Mindtree test automation services.
Mindtree test automation services.Mindtree test automation services.
Mindtree test automation services.
 
iCMG IT Architect Certification Programs
iCMG IT Architect Certification ProgramsiCMG IT Architect Certification Programs
iCMG IT Architect Certification Programs
 
Front Loaded Test Approach Verhaert
Front Loaded Test Approach VerhaertFront Loaded Test Approach Verhaert
Front Loaded Test Approach Verhaert
 
Visual Studio 2010 Testing & Lab Management Tools
Visual Studio 2010 Testing & Lab Management ToolsVisual Studio 2010 Testing & Lab Management Tools
Visual Studio 2010 Testing & Lab Management Tools
 
Gabriele Lana: Testing Web Applications
Gabriele Lana: Testing Web ApplicationsGabriele Lana: Testing Web Applications
Gabriele Lana: Testing Web Applications
 
The Future Tester at Suncorp - A Journey of Building Quality In Through Agile
The Future Tester at Suncorp - A Journey of Building Quality In Through AgileThe Future Tester at Suncorp - A Journey of Building Quality In Through Agile
The Future Tester at Suncorp - A Journey of Building Quality In Through Agile
 
IBM Rational App Scan Tester Edition and Quality Manager
IBM Rational App Scan Tester Edition and Quality ManagerIBM Rational App Scan Tester Edition and Quality Manager
IBM Rational App Scan Tester Edition and Quality Manager
 
vodQA 2023 - Keynote.pptx
vodQA 2023 - Keynote.pptxvodQA 2023 - Keynote.pptx
vodQA 2023 - Keynote.pptx
 
The Speed to Cool: Agile Testing & Building Quality In
The Speed to Cool: Agile Testing & Building Quality InThe Speed to Cool: Agile Testing & Building Quality In
The Speed to Cool: Agile Testing & Building Quality In
 
Testing in an Open Source Middleware Platform Space The WSO2 Way.
Testing in an Open Source Middleware Platform Space  The WSO2 Way.Testing in an Open Source Middleware Platform Space  The WSO2 Way.
Testing in an Open Source Middleware Platform Space The WSO2 Way.
 
Unit testingandcontinousintegrationfreenest1dot4
Unit testingandcontinousintegrationfreenest1dot4Unit testingandcontinousintegrationfreenest1dot4
Unit testingandcontinousintegrationfreenest1dot4
 
7 Deadly Sins of Agile Software Test Automation
7 Deadly Sins of Agile Software Test Automation7 Deadly Sins of Agile Software Test Automation
7 Deadly Sins of Agile Software Test Automation
 
IBM Rational Software Conference 2009: Quality Management Track Keynote
IBM Rational Software Conference 2009: Quality Management Track KeynoteIBM Rational Software Conference 2009: Quality Management Track Keynote
IBM Rational Software Conference 2009: Quality Management Track Keynote
 
Lesson2 software process_contd2
Lesson2 software process_contd2Lesson2 software process_contd2
Lesson2 software process_contd2
 
JIRA Studio: Development in the Cloud - Atlassian Summit 2010
JIRA Studio: Development in the Cloud - Atlassian Summit 2010JIRA Studio: Development in the Cloud - Atlassian Summit 2010
JIRA Studio: Development in the Cloud - Atlassian Summit 2010
 
Oracle formstutorial
Oracle formstutorialOracle formstutorial
Oracle formstutorial
 
Oracle formstutorial
Oracle formstutorialOracle formstutorial
Oracle formstutorial
 

Plus de Fabian Kiss

Plus de Fabian Kiss (7)

#noprojects (digest version)
#noprojects (digest version)#noprojects (digest version)
#noprojects (digest version)
 
#noprojects (full version)
#noprojects (full version)#noprojects (full version)
#noprojects (full version)
 
Relatives Schätzen - SwissICT Agile Breakfast Bern
Relatives Schätzen - SwissICT Agile Breakfast BernRelatives Schätzen - SwissICT Agile Breakfast Bern
Relatives Schätzen - SwissICT Agile Breakfast Bern
 
BDD in open source projects - Is it really beneficial?
BDD in open source projects - Is it really beneficial?BDD in open source projects - Is it really beneficial?
BDD in open source projects - Is it really beneficial?
 
Collocation in Distributed Scrum Teams - Lessons Learned
Collocation in Distributed Scrum Teams - Lessons LearnedCollocation in Distributed Scrum Teams - Lessons Learned
Collocation in Distributed Scrum Teams - Lessons Learned
 
Documentation for Program Comprehension in Agile Software Development
Documentation for Program Comprehension in Agile Software DevelopmentDocumentation for Program Comprehension in Agile Software Development
Documentation for Program Comprehension in Agile Software Development
 
Documentation in the agile software development process
Documentation in the agile software development processDocumentation in the agile software development process
Documentation in the agile software development process
 

Dernier

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Dernier (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 

Web Acceptance Testing with Behat