All Projects → camptocamp → Oerpscenario

camptocamp / Oerpscenario

Licence: gpl-2.0
Business Driven Development (BDD) for OpenERP/Odoo

Labels

Projects that are alternatives of or similar to Oerpscenario

cucumber
Cucumber testing framework for Rust. Fully native, no external test runners or dependencies.
Stars: ✭ 322 (+906.25%)
Mutual labels:  cucumber
Jest Cucumber
Execute Gherkin scenarios in Jest
Stars: ✭ 347 (+984.38%)
Mutual labels:  cucumber
Appiumtestdistribution
A tool for running android and iOS appium tests in parallel across devices... U like it STAR it !
Stars: ✭ 764 (+2287.5%)
Mutual labels:  cucumber
flutter gherkin
A Gherkin parsers and runner for Dart and Flutter which is very similar to cucumber
Stars: ✭ 160 (+400%)
Mutual labels:  cucumber
TestLeafSeleniumTraining
This is public repository for Selenium Learners at TestLeaf
Stars: ✭ 80 (+150%)
Mutual labels:  cucumber
Cucumber Boilerplate
Boilerplate project to run WebdriverIO tests with Cucumber
Stars: ✭ 411 (+1184.38%)
Mutual labels:  cucumber
behave2cucumber
Behave to Cucumber converter
Stars: ✭ 21 (-34.37%)
Mutual labels:  cucumber
Cuke linter
A linting tool for Cucumber
Stars: ✭ 24 (-25%)
Mutual labels:  cucumber
Cucumber
A monorepo of common components - building blocks for implementing Cucumber in various languages.
Stars: ✭ 3,299 (+10209.38%)
Mutual labels:  cucumber
Karate
Test Automation Made Simple
Stars: ✭ 5,497 (+17078.13%)
Mutual labels:  cucumber
CodeSpecJS
UI Automation Testing without writing a single line of code
Stars: ✭ 16 (-50%)
Mutual labels:  cucumber
bat
Gherkin based DSL for testing HTTP APIs via Cucumber.JS
Stars: ✭ 30 (-6.25%)
Mutual labels:  cucumber
Knapsack
Knapsack splits tests evenly across parallel CI nodes to run fast CI build and save you time.
Stars: ✭ 430 (+1243.75%)
Mutual labels:  cucumber
gherkin
Pure Rust implementation of Gherkin language (`.feature` file) for Cucumber testing framework.
Stars: ✭ 41 (+28.13%)
Mutual labels:  cucumber
Webdriverio
Next-gen browser and mobile automation test framework for Node.js
Stars: ✭ 7,214 (+22443.75%)
Mutual labels:  cucumber
spring-boot-microservice-best-practices
Best practices and integrations available for Spring Boot based Microservice in a single repository.
Stars: ✭ 139 (+334.38%)
Mutual labels:  cucumber
Behat
BDD in PHP
Stars: ✭ 3,696 (+11450%)
Mutual labels:  cucumber
Cucumber Protractor Harness
Simple starter project for incorporating cucumber (2.3.1) with protractor
Stars: ✭ 9 (-71.87%)
Mutual labels:  cucumber
Aruba
Test command-line applications with Cucumber-Ruby, RSpec or Minitest. The most up to date documentation can be found on Cucumber.Pro (https://app.cucumber.pro/projects/aruba)
Stars: ✭ 900 (+2712.5%)
Mutual labels:  cucumber
Cucumber Js
Cucumber for JavaScript
Stars: ✭ 4,383 (+13596.88%)
Mutual labels:  cucumber

OERPScenario - Business Driven Development (BDD) for OpenERP/Odoo

OERPScenario is a tool to allows Business Driven Development (BDD). It allows non-technical people to write real business cases, that will be tested among OpenERP to ensure no regressions.

OERPScenario will allow us to detect regressions from one version to another by running a test suites composed by scenario on a specified OpenERP server (directly on the customer replication instance, or just on the last stable release).

We also include in this brand new version written in Python and based on Erppeek (http://erppeek.readthedocs.org/en/latest/) a complete DSL that allow you to write tests at the speed of thought.

This means a business specialist can write something like the following:

Scenario: SO013 CREATION
    Given I need a "sale.order" with name: SO013 and oid: scenario.anglosaxon_SO013
    And having:
        | name | value |
        | date_order | %Y-03-15 |
        | name | SO013 |
        | partner_id | by oid: scenario.customer_1 |
        | pricelist_id | by id: 1 |
        | partner_invoice_id | by oid: scenario.customer_1_add |
        | partner_order_id | by oid: scenario.customer_1_add |
        | partner_shipping_id | by oid: scenario.customer_1_add |
        | shop_id | by id: 1 |
    Given I need a "sale.order.line" with oid: scenario.anglosaxon_SO013_line1
    And having:
        | name | value |
        | name | SO013_line1 |
        | product_id | by oid: scenario.p5 |
        | price_unit | 450 |
        | product_uom_qty | 1.0 |
        | product_uom | by name: PCE |
        | order_id | by oid: scenario.anglosaxon_SO013 |
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].