Questions tagged [codeception]

Codeception is a modern full-stack testing framework for PHP. Inspired by BDD, it provides a way of writing acceptance, functional and even unit tests. Powered by PHPUnit.

Codeception is a PHP full-stack testing framework. Inspired by BDD, it provides a new way of writing acceptance, functional and even unit tests. Powered by PHPUnit.

Feature Overview:

  • Multiple backends, easily changed , PhpBrowser
  • Elements matched by name, CSS, XPath
  • Data Cleanup after each run
  • Integrate with Symfony, Zend Framework, Laravel, Yii and other frameworks
  • Continuous Integration systems like Jenkins or Bamboo
  • Natively executes PHPUnit tests
  • BDD-style scenario-driven tests
  • WebServices testing via REST,SOAP
  • Generates HTML, XML, TAP, JSON reports
  • Simple Fixtures
  • Database and Doctrine ORM helpers
  • CodeCoverage and Remote CodeCoverage

Documentation & Links

Available modules for frameworks

1468 questions
0
votes
1 answer

How to tell codeception to finish selection from a dropdown list items without clicking any submit button

i can select element from a drop down list in codeception but somehow it is not showing as selected in box as i think the select operation is somehow not finished.I donot have any submit button so i tried to move my focus to any other element on the…
shab
  • 989
  • 1
  • 15
  • 31
0
votes
1 answer

Pause a test in codeception (when using the selenium webdriver)

Is there a way to pause and then resume codeception test execution with a statement in the test code?
C R Lakshmi
  • 77
  • 1
  • 10
0
votes
1 answer

Find multiple nested div in Codeception

My code is below : $I->see('20.4','//*[@class="container ng-scope"]/div/div/div/div/div[@class="bigNum ng-binding"]'); It is working fine but as you can see tthe class is nested into multiple div, want to get rid of so many divs nested. I tried :…
shab
  • 989
  • 1
  • 15
  • 31
0
votes
1 answer

codeception CSS path having multiple class with same name

below code :

Try entering some values for this widget

shab
  • 989
  • 1
  • 15
  • 31
0
votes
1 answer