Skip to content

Instantly share code, notes, and snippets.

View giovanettid's full-sized avatar

Didier Giovanetti giovanettid

  • Didier Giovanetti
  • France
View GitHub Profile
@giovanettid
giovanettid / todo-steps-seleniumjs.js
Last active November 9, 2015 21:51
cucumberjs step with seleniumjs page object
module.exports = function() {
this.Before(function (callback) {
todo.before().then(function() {
callback();
});
});
this.After(function (callback) {
todo.after().then(function() {
@giovanettid
giovanettid / todo-steps-zombiejs.js
Last active November 9, 2015 21:52
cucumberjs step with zombiejs page object
module.exports = function() {
this.Before(function (callback) {
todo.before(callback);
});
this.Given(/(\d+) todos dans la liste/, function (nbTodos, callback) {
for(var i=1;i<=parseInt(nbTodos);i++) {
todo.typeNew("todo "+i).enterNew();
@giovanettid
giovanettid / todoAdd.feature
Last active November 9, 2015 21:53
cucumberjs scenario
Feature: todo add feature
Scenario: add todos in todo list
When je saisis le todo "first todo"
And je saisis le todo "second todo"
Then le todo "first todo" est placé en position 1 dans la liste
And le todo "second todo" est placé en position 2 dans la liste
@giovanettid
giovanettid / todoAdd-seleniumjs.js
Last active November 9, 2015 21:54
mocha chai test with seleniumjs page object
describe('Todo add scenario', function() {
before(function() {
return todo.before();
});
it('titre de la page', function() {
return expect(todo.title()).to.eventually.equal('TodoListWithBB');
});
@giovanettid
giovanettid / todoAdd-zombiejs.js
Last active November 9, 2015 21:55
mocha chai test with zombiejs page object
describe('Todo add scenario', function() {
before(function(done) {
todo.before(done);
});
it('titre de la page', function() {
expect(todo.title()).to.equal('TodoListWithBB');
});
it('titre de la todo list', function() {
@giovanettid
giovanettid / todoAdd-casperjs.js
Last active November 9, 2015 21:55
mocha chai test with casperjs page object
describe('Todo add scenario', function() {
before(function () {
todo.before();
});
it('titre de la page', function() {
todo.test(function() {
expect("TodoListWithBB").to.matchTitle;
});
});
@giovanettid
giovanettid / todoPage-webdriverio.js
Last active November 9, 2015 21:57
todo page object webdriverio
function TodoPage() {
'use strict';
var idNew = '#new-todo';
var title = 'title';
var titleList = '#header > h1';
var children = '#todo-list li';
var childrenVisible = '#todo-list li:not(.hidden)';
@giovanettid
giovanettid / todoPage-seleniumjs.js
Last active November 9, 2015 21:58
todo page object seleniumjs
function TodoPage() {
'use strict';
var idNew = '#new-todo';
var title = 'title';
var titleList = '#header > h1';
var children = '#todo-list li';
var childrenVisible = '#todo-list li:not(.hidden)';
@giovanettid
giovanettid / todoPage-zombiejs.js
Last active November 9, 2015 21:58
todo page object zombiejs
function TodoPage() {
'use strict';
var ENTER_KEY = 13;
var idNew = '#new-todo';
var title = 'title';
var titleList = '#header > h1';
var children = '#todo-list li';
@giovanettid
giovanettid / todoPage-casperjs.js
Last active November 9, 2015 21:59
todo page object casperjs
function TodoPage() {
'use strict';
var idNew = '#new-todo';
var title = '#header > h1';
var children = '#todo-list li';
var nthChild = function(n) {
return children+':nth-child('+n+')';