Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

## What this does and why you should use it?

[![Greenkeeper badge](https://badges.greenkeeper.io/zaripych/webdriver-query.svg)](https://greenkeeper.io/)

The library allows you to query whole pages, multiple objects or elements, forms, tables from Selenium WebDriver supported browser using a single query. If you have a test that has to load a lot of data from the browser then you can use this library to improve its performance.

## Features
Expand Down
64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,46 +55,46 @@
"selenium-webdriver": ">= 3.6.0"
},
"devDependencies": {
"@babel/cli": "7.1.0",
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-typescript": "7.1.0",
"@babel/runtime": "7.0.0",
"@commitlint/cli": "7.3.1",
"@commitlint/config-conventional": "7.3.1",
"@semantic-release/git": "7.0.7",
"@types/jest": "22.2.3",
"@types/jquery": "3.2.16",
"@types/node": "9.6.6",
"@types/selenium-webdriver": "3.0.8",
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-proposal-object-rest-spread": "7.3.4",
"@babel/plugin-transform-runtime": "7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/preset-typescript": "7.3.3",
"@babel/runtime": "7.3.4",
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@semantic-release/git": "7.0.8",
"@types/jest": "24.0.11",
"@types/jquery": "3.3.29",
"@types/node": "11.11.0",
"@types/selenium-webdriver": "3.0.15",
"@types/semver": "5.5.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.2",
"chromedriver": "2.41.0",
"babel-jest": "24.3.1",
"babel-loader": "8.0.5",
"chromedriver": "2.46.0",
"css.escape": "1.5.1",
"escape-string-regexp": "1.0.5",
"geckodriver": "1.12.2",
"geckodriver": "1.16.0",
"husky": "1.3.1",
"jest": "23.6.0",
"jest": "24.3.1",
"jquery": "3.3.1",
"jsdom": "11.6.2",
"prettier": "1.15.2",
"prettier-tslint": "0.4.0",
"rimraf": "2.6.1",
"jsdom": "13.2.0",
"prettier": "1.16.4",
"prettier-tslint": "0.4.2",
"rimraf": "2.6.3",
"selenium-webdriver": "3.6.0",
"semantic-release": "15.12.1",
"semantic-release": "15.13.3",
"semver": "5.6.0",
"ts-jest": "22.4.4",
"ts-loader": "4.2.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"typescript": "2.9.2",
"webpack": "4.6.0",
"webpack-cli": "2.0.15"
"ts-jest": "24.0.0",
"ts-loader": "5.3.3",
"tslint": "5.13.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.3.3333",
"webpack": "4.29.6",
"webpack-cli": "3.2.3"
},
"jest": {
"testURL": "http://localhost/",
Expand Down
Loading