UNPKG

@financial-times/o-ads

Version:

This package contains the core functionality used by the FT in providing ads across all of its sites. This includes ft.com, howtospendit.com, ftadviser.com and other specialist titles.

28 lines (22 loc) 530 B
const commands = { cleverFrame: function(selector) { const browser = this.client.options.desiredCapabilities.browser; if (browser === 'Edge') { return this.api.frame(0); } if (browser === 'firefox') { return this.api.frame(1); } return this.api.frame(selector); }, cleverFrameParent: function() { const browser = this.client.options.desiredCapabilities.browser; if(browser === 'IE') { return this.api.frame(); } return this.api.frameParent(); } }; module.exports = { commands: [commands] };