UNPKG

@christian-bromann/webdriverio

Version:

A nodejs bindings implementation for selenium 2.0/webdriver

13 lines (9 loc) 360 B
var assert = require('assert'); describe('webdriver.io page', function() { it('should be a pending test'); it('should have the right title - the fancy generator way', function () { browser.url('/'); var title = browser.getTitle(); assert.equal(title, 'WebdriverIO - Selenium 2.0 javascript bindings for nodejs'); }); });