@flood/chrome
Advanced tools
Comparing version 0.2.7 to 0.2.8
# `@flood/chrome` Changelog | ||
## 0.2.8 (https://github.com/flood-io/browser-test/compare/v0.2.7...v0.2.8) (2018-03-18) | ||
### Bug Fixes | ||
* pencil: release strategy (a9b0a07 (https://github.com/flood-io/browser-test/commit/a9b0a07)) | ||
## 0.2.5 (27/02/2018): | ||
@@ -4,0 +10,0 @@ |
@@ -680,9 +680,9 @@ // Type definitions for @flood/chrome 0.1.12 | ||
* The target frame may be specified as: | ||
* - numeric index into window.frames for the currently selected frame. | ||
* - ElementHandle, which must references a FRAME or IFRAME element on the current page. | ||
* - locator which may be used to first locate a FRAME or IFRAME on the current page before attempting to switch to it. | ||
* - string name of the frame to wait for matching the frame's `name` or `id` attribute. | ||
* - (Coming soon) numeric index into window.frames for the currently selected frame. | ||
* - (Coming soon) locator which may be used to first locate a FRAME or IFRAME on the current page before attempting to switch to it. | ||
* | ||
* Upon successful resolution of this condition, the driver will be left focused on the new frame. | ||
*/ | ||
static ableToSwitchToFrame(): Condition | ||
static ableToSwitchToFrame(frame: string | number | Locatable): Condition | ||
@@ -689,0 +689,0 @@ /** |
119
package.json
{ | ||
"name": "@flood/chrome", | ||
"version": "0.2.7", | ||
"private": false, | ||
"description": "Flood Chrome provides an API for scripting Browser Level Load Tests", | ||
"types": "./index.d.ts", | ||
"scripts": { | ||
"release": "npm-release", | ||
"doc": "yarn typedoc && ts-node ./utils/docs.ts", | ||
"docs": "node --trace-warnings $(npm bin)/nodemon --ext ts --exec ts-node -- ./utils/docs.ts", | ||
"typedoc": "typedoc --json docs.json --includeDeclarations ./index.d.ts" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://git@github.com/flood-io/browser-test.git" | ||
}, | ||
"author": "Ivan Vanderbyl", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/flood-io/browser-test/issues" | ||
}, | ||
"homepage": "https://github.com/flood-io/browser-test#readme", | ||
"dependencies": { | ||
"typescript": "^2.7" | ||
}, | ||
"main": "index.js", | ||
"devDependencies": { | ||
"glob": "^7.1.2", | ||
"commonmark": "^0.28.1", | ||
"front-matter": "^2.3.0", | ||
"gitbook-cli": "^2.3.2", | ||
"lodash.camelcase": "^4.3.0", | ||
"markdown-table": "^1.1.1", | ||
"mkdirp": "^0.5.1", | ||
"nodemon": "^1.14.12", | ||
"npm-release": "^1.0.0", | ||
"ts-node": "^4.1.0", | ||
"typedoc": "^0.10.0" | ||
}, | ||
"keywords": [ | ||
"load-testing", | ||
"browser-testing", | ||
"selenium", | ||
"bdd", | ||
"tdd", | ||
"performance" | ||
], | ||
"prettier": { | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"printWidth": 80, | ||
"useTabs": true, | ||
"tabWidth": 2, | ||
"bracketSpacing": true, | ||
"jsxBracketSameLine": true, | ||
"arrowParens": "avoid" | ||
} | ||
"name": "@flood/chrome", | ||
"version": "0.2.8", | ||
"private": false, | ||
"description": "Flood Chrome provides an API for scripting Browser Level Load Tests", | ||
"types": "./index.d.ts", | ||
"scripts": { | ||
"release": "npm-release", | ||
"doc": "yarn typedoc && ts-node ./utils/docs.ts", | ||
"docs": "node --trace-warnings $(npm bin)/nodemon --ext ts --exec ts-node -- ./utils/docs.ts", | ||
"typedoc": "typedoc --json docs.json --includeDeclarations ./index.d.ts" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://git@github.com/flood-io/browser-test.git" | ||
}, | ||
"author": "Ivan Vanderbyl", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/flood-io/browser-test/issues" | ||
}, | ||
"homepage": "https://github.com/flood-io/browser-test#readme", | ||
"dependencies": { | ||
"typescript": "^2.7" | ||
}, | ||
"main": "index.js", | ||
"devDependencies": { | ||
"commonmark": "^0.28.1", | ||
"conventional-changelog-ember": "^0.3.6", | ||
"front-matter": "^2.3.0", | ||
"gitbook-cli": "^2.3.2", | ||
"glob": "^7.1.2", | ||
"lodash.camelcase": "^4.3.0", | ||
"markdown-table": "^1.1.1", | ||
"mkdirp": "^0.5.1", | ||
"nodemon": "^1.14.12", | ||
"npm-release": "^1.0.0", | ||
"semantic-release": "^15.1.2", | ||
"ts-node": "^4.1.0", | ||
"typedoc": "^0.10.0" | ||
}, | ||
"keywords": [ | ||
"load-testing", | ||
"browser-testing", | ||
"selenium", | ||
"bdd", | ||
"tdd", | ||
"performance" | ||
], | ||
"prettier": { | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"printWidth": 80, | ||
"useTabs": true, | ||
"tabWidth": 2, | ||
"bracketSpacing": true, | ||
"jsxBracketSameLine": true, | ||
"arrowParens": "avoid" | ||
}, | ||
"release": { | ||
"branch": "master" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
13
210402
13