{"maintainers":[{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"}],"keywords":["automation","selenium","testing","webdriver","webdriverjs"],"dist-tags":{"latest":"4.44.0"},"description":"The official WebDriver JavaScript bindings from the Selenium project","readme":"# selenium-webdriver\n\nJavaScript language bindings for [Selenium WebDriver](https://www.selenium.dev).\nSelenium automates browsers for testing and web-based task automation.\n\nRequires Node.js >= 20.\n\n## Installation\n\n```bash\nnpm install selenium-webdriver\n```\n\n## Quick Start\n\n```javascript\nconst { Builder, Browser } = require('selenium-webdriver')\n\n;(async function example() {\n  let driver = await new Builder().forBrowser(Browser.CHROME).build()\n  try {\n    await driver.get('https://www.selenium.dev')\n    console.log(await driver.getTitle())\n  } finally {\n    await driver.quit()\n  }\n})()\n```\n\nSelenium Manager automatically handles browser driver installation — no manual driver setup required.\n\n## Configuring the Builder\n\nThe `Builder` sets default options for all browsers in a single chain; options\nfor non-selected browsers are dropped at `build()` time. The target browser can\nbe swapped at runtime via the `SELENIUM_BROWSER` environment variable.\n\n```javascript\nconst { Builder, Browser } = require('selenium-webdriver')\nconst chrome = require('selenium-webdriver/chrome')\nconst firefox = require('selenium-webdriver/firefox')\n\nlet driver = new Builder()\n  .forBrowser(Browser.FIREFOX)\n  .setChromeOptions(new chrome.Options())\n  .setFirefoxOptions(new firefox.Options())\n  .build()\n```\n\n## Running Against a Remote Server\n\nTo run scripts against a [Selenium Grid](https://www.selenium.dev/documentation/grid/)\nor standalone server, point the Builder at the server URL, or set\n`SELENIUM_REMOTE_URL`:\n\n```javascript\nlet driver = new Builder().forBrowser(Browser.CHROME).usingServer('http://localhost:4444').build()\n```\n\n```bash\nSELENIUM_REMOTE_URL=\"http://localhost:4444\" node script.js\n```\n\n## Node Support Policy\n\nEach `selenium-webdriver` release targets the latest _semver-minor_ of Node's\n[LTS and Current releases](https://github.com/nodejs/release#release-schedule).\n\n| Level         | Guarantee                                                                 |\n| :------------ | :------------------------------------------------------------------------ |\n| _supported_   | API compatible without runtime flags; bugs investigated and fixed.        |\n| _best effort_ | Bugs investigated as time permits; API compatibility only where required. |\n| _unsupported_ | Bug reports closed as will-not-fix; API compatibility not guaranteed.     |\n\nVersions older than the active LTS, unstable release branches (e.g. `v.Next`),\nand _semver-major_ Node releases outside the LTS / Current pair are _unsupported_.\n\n## Documentation\n\n- [Getting Started](https://www.selenium.dev/documentation/webdriver/getting_started/)\n- [JavaScript API Docs](https://www.selenium.dev/selenium/docs/api/javascript/)\n- [Selenium Manager](https://www.selenium.dev/documentation/selenium_manager/)\n- [Selenium Grid](https://www.selenium.dev/documentation/grid/)\n\n## Support\n\n- [Selenium Chat](https://www.selenium.dev/support/#ChatRoom)\n- [GitHub Issues](https://github.com/SeleniumHQ/selenium/issues)\n\n## Contributing\n\nContributions are welcome via [GitHub](https://github.com/SeleniumHQ/selenium/) pull requests.\nSee the [source code](https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver) for this binding.\n\n## Links\n\n- [npm](https://www.npmjs.com/package/selenium-webdriver)\n- [Documentation](https://www.selenium.dev/documentation/?tab=javascript)\n\n## License\n\nLicensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).\n","repository":{"type":"git","url":"git+https://github.com/SeleniumHQ/selenium.git"},"users":{"285858315":true,"hq":true,"ny":true,"po":true,"xch":true,"cedx":true,"jh86":true,"n370":true,"qmmr":true,"wayn":true,"altus":true,"jokja":true,"kotti":true,"kurre":true,"leonv":true,"lgh06":true,"ortee":true,"panlw":true,"syzer":true,"tstam":true,"allain":true,"cmp-cc":true,"daizch":true,"dkblay":true,"dujuan":true,"egantz":true,"flowlo":true,"fpmweb":true,"jhal81":true,"kkuehl":true,"mateo_":true,"msc654":true,"mykhpl":true,"n1kkou":true,"npmxkl":true,"qiaohe":true,"sobear":true,"walmik":true,"webbot":true,"apehead":true,"avishek":true,"gauss02":true,"holyzfy":true,"itonyyo":true,"kaashin":true,"nicomee":true,"ppatron":true,"thelmos":true,"tverezo":true,"yokubee":true,"ahvonenj":true,"awaterma":true,"awen1983":true,"baixi233":true,"bapinney":true,"coalesce":true,"cyberx11":true,"devonwen":true,"dyoshida":true,"ellie91b":true,"erikvold":true,"fattenap":true,"flashyrc":true,"gvr37leo":true,"hrmoller":true,"jayrobot":true,"jmeester":true,"konamgil":true,"madarche":true,"mhaidarh":true,"mtscout6":true,"olamedia":true,"pratheek":true,"randygoh":true,"rowemore":true,"slava-sh":true,"vichango":true,"winsonwq":true,"abuelwafa":true,"animabear":true,"aristo_sh":true,"baohx2000":true,"chumingze":true,"deusalgor":true,"iceriver2":true,"instriker":true,"j3rrywan9":true,"jireve999":true,"karthilxg":true,"ldq-first":true,"lseongjoo":true,"manoj9788":true,"marsojane":true,"mccataldo":true,"mikestaub":true,"neha_wane":true,"octalmage":true,"rgraves90":true,"rubiadias":true,"shaddix09":true,"tomwayson":true,"usmonster":true,"valenwave":true,"zombinary":true,"abdihaikal":true,"akccakcctw":true,"billfeller":true,"chirag8642":true,"domjtalbot":true,"gerst20051":true,"greatghoul":true,"klimnikita":true,"kuzmicheff":true,"leonardorb":true,"maximkogan":true,"orion01500":true,"p.haurylau":true,"princetoad":true,"rameshnzee":true,"stephenhuh":true,"taoyang987":true,"alexbai1991":true,"blackoperat":true,"chrisakakay":true,"ciceropablo":true,"cycomachead":true,"demian_dark":true,"flumpus-dev":true,"jamesbedont":true,"jefrancomix":true,"psychollama":true,"thangakumar":true,"xingjianpan":true,"code-curious":true,"kharytonenka":true,"lsxlsxxslxsl":true,"matiasmarani":true,"nandini.3186":true,"nickeltobias":true,"paulomcnally":true,"roshanravi10":true,"suhaib.affan":true,"vaibhavsingh":true,"duskalbatross":true,"jacob-beltran":true,"mdedirudianto":true,"parkerproject":true,"serge-nikitin":true,"slava.hatnuke":true,"zeljkofilipin":true,"bhaskarmelkani":true,"igorpupkinable":true,"pateldevang035":true,"santosharakere":true,"shanewholloway":true,"brandonpapworth":true,"marcobiedermann":true,"vassiliy.pimkin":true,"scott.m.sarsfield":true},"bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"license":"Apache-2.0","versions":{"2.29.0":{"name":"selenium-webdriver","version":"2.29.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.29.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":"https://code.google.com/p/selenium/issues/list","dist":{"shasum":"3ce4c8ba82ec15fd72b6596a56e15b37a83dde0c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.29.0.tgz","integrity":"sha512-ouEv/czEMS4/ZhmjwiGJBXNjGZHuj+HS5qug0BkFdj9E+2ApJRKmJgHSjc8+0QcXvxqhsZ2AGUZ0zL6eDD/tcA==","signatures":[{"sig":"MEUCIQD0Co51RWRmEmhVmUwvnWQC152Nw5C0s2NwHZfWkYtNLgIgDI2XTaE8MgRNnxJfvmhoqDKSplEMVGaPVmJCu6YMiSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{}},"2.29.1":{"name":"selenium-webdriver","version":"2.29.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.29.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":"https://code.google.com/p/selenium/issues/list","dist":{"shasum":"c109001a062073996d6f440a6ab9e02bec6949c7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.29.1.tgz","integrity":"sha512-iS4hHnNOCeP2fZyKhNyCv6RVVVjFmA65BLmW2qW+csoEKnApwwFC8i4c7EBsBUI3ajkzf+HfUKTcjy+nkojyZw==","signatures":[{"sig":"MEUCIBn7S3SBLb1dKaVhMkaN3Di88yaBymp2pFntTLk6EYl8AiEAqyhqMcU2h7tyzn0SasXl9vVS0BCwpCSKmNvQ0ijH+Uk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{}},"2.30.0":{"name":"selenium-webdriver","version":"2.30.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.30.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"fdff5a426383a39e2ab4ade26649d949757f3d43","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.30.0.tgz","integrity":"sha512-nIFCMg5aEYW1HICjRiTmBFIIYfBkqolvhU5ulHpPCfyyftU2vrX9GufVwTRQA+9gvducjyB8rNbsj0G/cY6/6Q==","signatures":[{"sig":"MEUCIQDXABVr86xXnIvQNuF9uLfgQfD/Nh5Mol2TZSR/wJ362gIgMSiuy7r01/7spendmPNrxyxHTKyusJckHUMrsQoMc0U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{}},"2.31.0":{"name":"selenium-webdriver","version":"2.31.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.31.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"70d7522747c9fa7df4179ead8077bfb8d310be3d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.31.0.tgz","integrity":"sha512-aIGnWt53VIXB+3n4Ol60qHDsJG0dZklPzJJDdH/ZBEK+y9BzkEUcW6C0dIYrzB3C0lm4vuGIZ4JqVCr0yHhd4A==","signatures":[{"sig":"MEUCIEwwxKxrb4TZlBIzUhuFX0uljDcM/kZpsSs7VmAaqiT/AiEAr530G/I6/dF+6Yd4balSAot02aieAnR2OZeHzxEFEk8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{}},"2.32.0":{"name":"selenium-webdriver","version":"2.32.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.32.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"5f65744ae03c863c9682ab5a34fb742d588a7251","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.32.0.tgz","integrity":"sha512-h1BWOMOoyaqQu7qjZMUtWoFhLrmCHC1chlEXw087RYnQR6VOkXNfhWGJea0rnzxLaixJ+tIrRD1sb/4jZOqs6w==","signatures":[{"sig":"MEUCIQDDR7XEl3vkOt8004VtpPJUHLVy4osHh5QYrPrwZIHe0wIgGgaacNh3lGhOYh3AlIO36vlQaUdrBhiULhEjjMw/xGI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{}},"2.32.1":{"name":"selenium-webdriver","version":"2.32.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.32.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"148d89ecafd8a972712daf5ac4a452b8c15b58cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.32.1.tgz","integrity":"sha512-AmXuq63tsXjBnHW3pJKku0SnAHBy3GdPf+kElMtdJIqnopDLda6D23H9eaW8DzCY95rdYwHosK4GMBBVyj+mpQ==","signatures":[{"sig":"MEQCICK/6dsZOScwEnmqUFnGZx+Bmj4SiW2IpYpi4gPiCZxmAiB3HfhofloCP7jP3YhNPVXCW9KyYQ+hDNyTPh6rIsdrOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{}},"2.33.0":{"name":"selenium-webdriver","version":"2.33.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.33.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"dcb9f52b3534a6a157aaa8055b6dba7e60b08619","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.33.0.tgz","integrity":"sha512-cdS5BN9RfMygObRE6BVoUxq3dLvLJZ4yx5MAvAkwlpxF7T1+l5WKlsZjnuWrq1anC1RDtjIdYf+vGSrrb69bnA==","signatures":[{"sig":"MEQCIBpwFVcmw0LVLTHa4u0mNBv98TMWs2mqpnmXj2FmwUV5AiB9F3QURxTqnX9WJUoFBHRfympBXdQNwWIqWcvRIWeXBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{}},"2.34.0":{"name":"selenium-webdriver","version":"2.34.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.34.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"019396d0e04b60466ad70b49f8d99064e6a73012","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.34.0.tgz","integrity":"sha512-aKDtWDrSq8iBJmkqE78yybTOlEZPH3Ce4MVi3/6Vq10gw0oHqckc27tqnl4w5oUhH+NG6nKLe70tvOHHsFdl7Q==","signatures":[{"sig":"MEUCIQCVXaMzQe6zG88bi69BvsGGMQDH+k+gWLeY1fwhShjamwIgYyDTZYBtW3RNTAYEhhWN6C8dsgCjMAWQNAy+BRau9nM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver/","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.34.1":{"name":"selenium-webdriver","version":"2.34.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.34.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"fb68a4419f74b750a90efdba74c164bc597217dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.34.1.tgz","integrity":"sha512-Vxqzekf6EW10AMllH6/4+WaMBAXmbkDQorzhILf/wk/xT9XgDtnH7QUzge2kesv9QKVnnnkqjrxSyFr6bt0SmQ==","signatures":[{"sig":"MEQCIC7UYaDN6QtG8iVJ5DPMN+BRuH9X/WSITPZ9eOZUmp6/AiBavRz+XqlAEZG20zj2AD4VDBc6K/ONAmZxlZ5PVbxAiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.35.0":{"name":"selenium-webdriver","version":"2.35.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.35.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"0dc95194c05328ae650c9f7b9385d0a360529040","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.35.0.tgz","integrity":"sha512-0DO0fFiaXUAOLrr1HRXE9pICu3Goke3U4/REYfs2FUgNk6jMpSn3I1K92zXstXpZIfsmQv/U8zSuVL56oQk+sg==","signatures":[{"sig":"MEUCIQC+U3lpt+7XemUthHBPbi4zj0mexX4p8oGKCE5+offQAAIgWw6nfNfy14n6zS1zGOoZwizs3jXiQ/vRstvZyBm9x3U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.35.1":{"name":"selenium-webdriver","version":"2.35.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.35.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"951fe7b9119ee3abac86ff3b89d3ad0c89ca2f5e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.35.1.tgz","integrity":"sha512-CeyQBTvsHJyiwvrQeXeWQW9A1qpgrdtse3vjfNEFBZnqrym11b7y+3Rhy+/yjgHCY+AalUnPmbN7HoIHpAj2rw==","signatures":[{"sig":"MEUCIQCgGizqr5fz+ydVIbmTdbNSiHQ/2VEmyvooS5VJAEfOCQIgehtRL6kINY800SNZQUcSudoHTbeClybCntxYJnt27sc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.35.2":{"name":"selenium-webdriver","version":"2.35.2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.35.2","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"e6bbb6ff26ea61224173caa006a8eb87d6a94c2d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.35.2.tgz","integrity":"sha512-/ngoTpY7RhFMd3KvpRzD+N+ZpLMr9KDhNqUZTJ+YFEhJ7HPLAJNShcTeT26J38Q0zcvwhTGJ/jvYOMPMt6uKXA==","signatures":[{"sig":"MEUCIBUuNokRiTjotr8WRSG0tqic/H05/B4R4xcpv0ht32jQAiEAnHlmLSIj1M0G7zmroZQcIyeU1ymJd4mlEySE1YZVYrY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.37.0":{"name":"selenium-webdriver","version":"2.37.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.37.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"02a8c9240203c22d0400d466253d4af3f63748b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.37.0.tgz","integrity":"sha512-bc/edo109Azll/V+gMhMIlZGo/qn3ldV5tFYYKh/OsdJGW53R209oP9rt78dbc6UMZhP58tRN0MggmFh3Cgjvg==","signatures":[{"sig":"MEQCIGdeBA1UzYnjjzIAwZ0FPbXvZQC9anVFJgdhnWnux0N2AiBpi6nxZCO7dAk3Olz18RF3cdSI4bofrTMa76Mfla0djw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.38.0":{"name":"selenium-webdriver","version":"2.38.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.38.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"62d060758258b838092d6006b04316cefb49d3e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.38.0.tgz","integrity":"sha512-Qdm3BP7Cp/9VdCSp6zVnfDO9qJv/ARSMAkuotfwSZdzyQzKnxcJiZejXLrxSkqTXBqeZhDuMrwmBy5OQV/6AVg==","signatures":[{"sig":"MEYCIQCZ6fstZ7HM1ZXMPTairlIF+1bYqVuHIoln69ZLVnAtgAIhAN0gI+FCdbH2yvPisvyZm+Py3xvdU7AVwz50GinxO4AF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.38.1":{"name":"selenium-webdriver","version":"2.38.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.38.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"9299e3b808bec401334ca4e80cb0b70b872be651","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.38.1.tgz","integrity":"sha512-vu4IGsCuiQfrHtz5rjzHX0MaZGYVroa2Uk64b2FQ+oqFltNm+QLshBkmc9YMCzi8TJfIE050lS7NXHPl0ajXdA==","signatures":[{"sig":"MEYCIQDYBm228b+HVtGb7Ng3iiLgBlIRUr8mViBv5IQpH00BTgIhALgIeE/Us1GujbgxDxayNvDIYaEIsJSpcDvY0Mlw1xM1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.39.0":{"name":"selenium-webdriver","version":"2.39.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.39.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"546225f2f4f53f1f490a3077e5f14092fad3d205","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.39.0.tgz","integrity":"sha512-Nv13CUbB+QuIdEM8I0kjazRTQwhNTZt0W3hlW7lVH+1Yg14LavxMqZw7zyRJk8OJAbpZZGt3qNHWDgyDJ2JVpg==","signatures":[{"sig":"MEQCICLLV54gE2KndUFgdja0KvkWWlHRmL66n2J0p/ajih5eAiBT/PEYU1D9gHm42tBdySeUEnOdrLddk+9e3W/m0dS1QA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.40.0":{"name":"selenium-webdriver","version":"2.40.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.40.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"ca4603c08311ec3688d67e1c8e8263cb9c1c1450","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.40.0.tgz","integrity":"sha512-pnLAAVYnVtvO8uX7rfwfGmusRdDKMO1YMbFCheXUEKryWifNURakItiI6BvM6s9UktT6IhYy4JOxmcoqHn/KZg==","signatures":[{"sig":"MEQCIDb61om5Y6yIUtgIMQPKlHKW3YJlUKtBa4H93mrPqWHXAiBEtPKt2vxfIEhmLBPbs7VDPjkO1lUyZsVU+Hg5+ui36g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.41.0":{"name":"selenium-webdriver","version":"2.41.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.41.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"d084dfbc73bdf33aedc7d731eaab028affad7f16","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.41.0.tgz","integrity":"sha512-Wdho1+Gv7+Lptgz+8J8AqJWaw9SiLD9QDEw/SEbSwakvISGztFOMtIH0AvebKe0uKGcaNLPTbBanFop1V4fwOw==","signatures":[{"sig":"MEYCIQD9b668Z6td27bCJkqQvjKlYl48OBMM8GfWZxsde3RvowIhAKEnbaaZyfVkLhE1WthqvL14O7QapyhSxyY91ZcCLMJw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.42.0":{"name":"selenium-webdriver","version":"2.42.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.42.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"a7ec4ca8779378f6b2627ba342f529c8d1187195","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.42.0.tgz","integrity":"sha512-P/KMQr81XLuDJIGGi2wTh13Wcn3LohcEEuseJbKrfF/b8eSezuNTlTTXaJUNx9jnOBW/SSBcBCdvNH6QwVSdFA==","signatures":[{"sig":"MEMCH1I0T/YdmmDyv0fkK7az2pwRSD3l6p2kt3jray4Lv0ACIHg827z+5rWMFXSvHY8LzkOx21vj4n7qFgai+rrxyzrM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.42.1":{"name":"selenium-webdriver","version":"2.42.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.42.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"61984d1583b89c80a9f3bf31623d00bcc82a8d0e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.42.1.tgz","integrity":"sha512-slD0lBgC6Iu/kQsBClqEG8fyfZreVv8p0qyp7am9OOqzqBseQ2uhL06QZraDjvFqUYQEwpEu2UCb2aibRC7onw==","signatures":[{"sig":"MEUCIQCULonfa2M27LQLVTwVeQfQqbn+f9KJI/CvHt6vFUXodAIgAqXpZrcoZ20MFGTvRfMl8tWZMFPIFankY2UjeqVgxfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"node_modules/mocha/bin/mocha -R list --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.2.18","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"devDependencies":{"mocha":"~1.10.0"}},"2.43.1":{"name":"selenium-webdriver","version":"2.43.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.43.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"959020b6fd7a129afe1523d0e67514c3b4654e89","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.43.1.tgz"},"main":"./index","_from":".","engines":{"node":">= 0.8.x"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"deprecated":"Does not install cleanly cross-platform","repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.3.25","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"dependencies":{"tmp":"0.0.24","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":"~1.10.0"}},"2.43.2":{"name":"selenium-webdriver","version":"2.43.2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.43.2","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"cfc676cc4bd7ac528198271ef1b99fdd8ac336ff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.43.2.tgz"},"main":"./index","_from":"selenium-webdriver.tar.gz","engines":{"node":">= 0.8.x"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"selenium-webdriver.tar.gz","deprecated":"Does not install cleanly cross-platform","repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.3.25","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"dependencies":{"tmp":"0.0.24","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":"~1.10.0"}},"2.43.3":{"name":"selenium-webdriver","version":"2.43.3","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.43.3","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"225d2896c8f959e008622306c6ddc0574d7508ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.43.3.tgz"},"main":"./index","_from":"selenium-webdriver-2.43.3.tgz","engines":{"node":">= 0.8.x"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"selenium-webdriver-2.43.3.tgz","repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.3.25","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"dependencies":{"tmp":"0.0.24","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":"~1.10.0"}},"2.43.4":{"name":"selenium-webdriver","version":"2.43.4","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.43.4","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"c0eb002dd80287d5caae0a529abe3fd3d49abca1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.43.4.tgz","integrity":"sha512-B6UGkWE/VEtX0IIlMOiVkyzkt1czaS7DOWfYu1bRYEU6vOp9aKN+ae6i/G4PWZ9TSbqEC59ZlEDrBlGfHtStRQ==","signatures":[{"sig":"MEUCICz9Il5GAbqDL2MUBvqfCZI7s547dVGVQZqm3wIGcYndAiEAlkv9c9NCY65azZcHtadm0AYh9CExOcrHDVdHW7w41Pg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"selenium-webdriver-2.43.4.tgz","_shasum":"c0eb002dd80287d5caae0a529abe3fd3d49abca1","engines":{"node":">= 0.8.x"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"selenium-webdriver-2.43.4.tgz","repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.4.23","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"dependencies":{"tmp":"0.0.24","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":"~1.10.0"}},"2.43.5":{"name":"selenium-webdriver","version":"2.43.5","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.43.5","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"6ac04302e3e81dfe59956454a19f90eeadfe5573","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.43.5.tgz","integrity":"sha512-iCL5jcqa4w7Cq1pmr3qfhJDTCzRVzapTWUx88Bwt44u6jedNFuuYi8E5OjjbaAA0dsCveaL6MBRt4q1L1ic0pA==","signatures":[{"sig":"MEYCIQCLessP+gboKpRFrn54SL4OLjSvP6+AvQFCOfVWKz4+eAIhAM3BMiXD8AYbRJ5pT1c2Vzq0Rd8srn+kGdc45OA7TpgP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"selenium-webdriver-2.43.5.tgz","_shasum":"6ac04302e3e81dfe59956454a19f90eeadfe5573","engines":{"node":">= 0.8.x"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"selenium-webdriver-2.43.5.tgz","repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.4.23","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"dependencies":{"tmp":"0.0.24","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":"~1.10.0"}},"2.44.0":{"name":"selenium-webdriver","version":"2.44.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.44.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"6cc6257731cd27c6db6471092857755f99d77b57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.44.0.tgz","integrity":"sha512-0FxOEK5e9AZXlTpZ8+mnMoppqpoqTrAv3JklZCSREe+8dzcNRPVkKhpcPfk2ECdsdQmaPLp4/ExaHoAfPyIs8Q==","signatures":[{"sig":"MEUCIQDQ8CPBjCO+3q8T86YHlsT63i7XzlfU/OvT0KR2eoVPpgIgQoGzZamkyKoU4R3TCA1MuCWI2J64PEajcHDhMCw2Uuk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"6cc6257731cd27c6db6471092857755f99d77b57","engines":{"node":">= 0.8.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.4.23","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"dependencies":{"tmp":"0.0.24","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":"~1.10.0"}},"2.45.0":{"name":"selenium-webdriver","version":"2.45.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.45.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"211fa51ca822e99509fe0695399cef0299111064","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.45.0.tgz","integrity":"sha512-IPMGzqkrB/joGsDD0KVqxWvQ14U4n4WMmN8LAHcNksDuKvr5Hvs9gYpXZjMiLpJz1JUrAA0gZ6MFuTQAl/rcIg==","signatures":[{"sig":"MEQCIGmuA5QNMmqcUqvJOmRgSVMJHaX/hl6NwLG9ZoO3lHzEAiB/gp/0VVUTsjuTIZ7skMkZ+/3MLmdr7rHdLMPAYmz7Aw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"211fa51ca822e99509fe0695399cef0299111064","engines":{"node":">= 0.10.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"1.4.28","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"dependencies":{"ws":"^0.7.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"}},"2.45.1":{"name":"selenium-webdriver","version":"2.45.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.45.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://code.google.com/p/selenium/","bugs":{"url":"https://code.google.com/p/selenium/issues/list"},"dist":{"shasum":"6fc6a8ce385085a7b670edd36a379b2eddadf2c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.45.1.tgz","integrity":"sha512-ZUuapzgDHR9kEbwMMAjHAgy2mOI2pclfLfoJM2p0AoXrLeTgbN1/KieKxdGatEgMF4X19NU+nD6FAuZTHAr1pw==","signatures":[{"sig":"MEQCIH8f03HBqoappFA4D5hkt7z7y1WI7pZ73Mi2avuWIkvLAiAi5CDoRWdon+bAbMYUvmX2/SOEcVMP/LBuD6lQty3vkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"6fc6a8ce385085a7b670edd36a379b2eddadf2c9","engines":{"node":">= 0.10.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://code.google.com/p/selenium/","type":"git"},"_npmVersion":"2.5.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"0.12.0","dependencies":{"ws":"^0.7.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"}},"2.46.0":{"name":"selenium-webdriver","version":"2.46.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.46.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"a99440b1dfabed555d918aa9ee13894c0d9e1b62","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.46.0.tgz","integrity":"sha512-3W+FyprRt0uzswn1HooFeNnDo03bEqgm/89CkadHLsjebTe0Y65QmyHpmyAILBlKIfspdsmOoufTpH/Or6JE6A==","signatures":[{"sig":"MEUCIEwM49fp0iM9+pL1OGeiEfF5hFF38oxhqZfmunsQCpEKAiEA4aO2bzEYOV9zvNRXsaAc8rVEZamoGFnQUbKR5Oa19Yw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"selenium-webdriver","_shasum":"a99440b1dfabed555d918aa9ee13894c0d9e1b62","engines":{"node":">= 0.10.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:selenium-webdriver","repository":{"url":"https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.5.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"0.12.0","dependencies":{"ws":"^0.7.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"}},"2.46.1":{"name":"selenium-webdriver","version":"2.46.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"_id":"selenium-webdriver@2.46.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"cb74a52ab33eace7ec8447cf76facfaf2e3edd5f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.46.1.tgz","integrity":"sha512-MA8eKm8S3Sdc2fPD9iuASPmsx0oF9u6RmPciE2HNhoMWhJxuTz1IXcjsx1gpBEPnE7rsxjQDTeU4HoJWsWoGIg==","signatures":[{"sig":"MEUCIBBFR8hwbyn7UjHgeSL8R2o71ecGQVfdV4cAhs6KIxTTAiEAizVTMLQweZHgaGAc3ibDdWb4jVASxsPq1c3Klujtics=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"cb74a52ab33eace7ec8447cf76facfaf2e3edd5f","engines":{"node":">= 0.10.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.9.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"0.12.3","dependencies":{"ws":"^0.7.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"}},"2.47.0":{"name":"selenium-webdriver","version":"2.47.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@2.47.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"e29b52d2daa0f648c40f602f4d2a8e8bee351ea5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.47.0.tgz","integrity":"sha512-MeGVSMynOVITJArpPEsoJ+GJAr0vLjUXb57XT0kmEITCWsbsGyV53mH+8vVZ8gjsqflUg/37WmPfZxDcFtWaGg==","signatures":[{"sig":"MEYCIQDo+7deE3bfvT4rKde5JrdXaWO5Um9vuW/115vOWbNWgAIhAKZ5yrEps9gD3xKZoUJrrjaaaAq7+Lq0eWfkk/TAM3tt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"selenium-webdriver","_shasum":"e29b52d2daa0f648c40f602f4d2a8e8bee351ea5","engines":{"node":">= 0.12.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.14.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.0.0","dependencies":{"ws":"^0.8.0","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"}},"2.48.0":{"name":"selenium-webdriver","version":"2.48.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@2.48.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"fb7d3eaa19e19774ff840954deeb672c1ddc2b85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.48.0.tgz","integrity":"sha512-oXMSUpzDexarIWgcwuRSaKOK+evw/KCKCImnBT9SBTE6rV+bauG55sDvem0s+JsVs5wnU3HXhsjwXl4Unp5kvQ==","signatures":[{"sig":"MEQCIDVhEvemhh498hglVBGIXhd/LLlqpQn/c4zNFVmBqDfxAiAyed3dZZjvDIAaFXuq3Ru9eNwq6Xz9CBu3H+dbP7AsLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"fb7d3eaa19e19774ff840954deeb672c1ddc2b85","engines":{"node":">= 0.12.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.5.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"0.12.0","dependencies":{"ws":"^0.8.0","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"}},"2.48.1":{"name":"selenium-webdriver","version":"2.48.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@2.48.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d65ba256dcdb50f7df1513ec656831a5fd34fc8e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.48.1.tgz","integrity":"sha512-ZWQ/1XF80dmda9neUpM9zYkJyPmzqTO0i53t8+2aeQspAmt1R45ZLvBMkGKFQNisYB+47guxZqOr0zcvMF5cMA==","signatures":[{"sig":"MEUCIQCX/+tXCKupJTzBupAbSrBHVyDlZH5cBy+dr0DwrFZooQIgIymGwgqF1Cbc4iemtvPeDE05lMDoWGthlz4VW8VGFxg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"d65ba256dcdb50f7df1513ec656831a5fd34fc8e","engines":{"node":">= 0.12.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.14.4","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.1.2","dependencies":{"ws":"^0.8.0","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"}},"2.48.2":{"name":"selenium-webdriver","version":"2.48.2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@2.48.2","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"b26a4631430d0a9f36284ee0cfe09676e8f348ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.48.2.tgz","integrity":"sha512-hJ9ZnzmNSIuuG8oz5sdNhWYlbEoE8jHl9MNP5yzM3ovzI4r5StBJ9BE9pUeM+7ENxfb+mxS7Gxa5NzaWSwKRkA==","signatures":[{"sig":"MEQCIFqFJU+SdC+yeILiImj9W6F6/kxiDofVWqRh+LABI8qEAiBZhVlrnxsEZB6O6PTO2maFRsx4wnIAaXVy5xIThyE3Ow==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"b26a4631430d0a9f36284ee0cfe09676e8f348ca","engines":{"node":">= 0.12.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.14.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.2.1","dependencies":{"ws":"^0.8.0","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"}},"2.52.0":{"name":"selenium-webdriver","version":"2.52.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@2.52.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d2dcb2f51b48733d6c42829e52767ecee2bf4b6b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.52.0.tgz","integrity":"sha512-W5zrIjmJSOqGLEuufas7OTzr/yPYoVMM9yWEzHyavY0KnfTfb8ue2fgilGjMfdCbcGAfqyvyrDNpdwubHlcXlQ==","signatures":[{"sig":"MEUCIG84elc8yda0R2NQL2OwXzpa0k+qj39AEblpkroW4g2PAiEAvToNcPwlL7b2xHVy4xGTITE8YfkWKkplLHsv3HDDz9E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"d2dcb2f51b48733d6c42829e52767ecee2bf4b6b","engines":{"node":">= 4.2.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.5.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"0.12.0","dependencies":{"ws":"^1.0.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","sinon":"^1.17.2","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-2.52.0.tgz_1455259913894_0.6562679694034159","host":"packages-9-west.internal.npmjs.com"}},"2.53.1":{"name":"selenium-webdriver","version":"2.53.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@2.53.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"b50673955dc03b9164c07773a86b25ea7161dbd9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.53.1.tgz","integrity":"sha512-Yk66Gg+7g6gM8l+Rx6cQaOnA6RzLz+C+mJBBbNIbzWrJtL8LefwNEJBPrim/LU4ekyFPjY9KoHdFybxGjfafcg==","signatures":[{"sig":"MEQCIDEKyDLYX3yLaNIY0TTp0KJZfeiDmY+FXV/vuzFjy+J8AiAhsbmsswSXeiMyv+v3w7t0QIZtWVebNPpPRCVEn+j8UA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"b50673955dc03b9164c07773a86b25ea7161dbd9","engines":{"node":">= 4.2.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.14.12","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.3.2","dependencies":{"ws":"^1.0.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","sinon":"^1.17.2","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-2.53.1.tgz_1458076665097_0.960372352739796","host":"packages-12-west.internal.npmjs.com"}},"2.53.2":{"name":"selenium-webdriver","version":"2.53.2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@2.53.2","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"7d45f0b44c4d90d9c94b136e2dcaa0a70d54d67b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.53.2.tgz","integrity":"sha512-3QNA8NJS0Rdow0esubZhMDI7zEngD719yWIpohXmzgrE/mZiVX7A065xAgPGnUyUX1c4EmBNWlyqt5Sy5x3wHA==","signatures":[{"sig":"MEQCIF+eQipMtGKCicKMNS5q08FWBSdSeda3IgoPFF5LVUFXAiBzVRxIuxs6fmvAN8c5f9D3RbjrdHzq5AapFi7hEsdL9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"7d45f0b44c4d90d9c94b136e2dcaa0a70d54d67b","engines":{"node":">= 4.2.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.14.12","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.3.2","dependencies":{"ws":"^1.0.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","sinon":"^1.17.2","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-2.53.2.tgz_1461885460996_0.9391728369519114","host":"packages-12-west.internal.npmjs.com"}},"2.53.3":{"name":"selenium-webdriver","version":"2.53.3","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@2.53.3","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d29ff5a957dff1a1b49dc457756e4e4bfbdce085","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-2.53.3.tgz","integrity":"sha512-frrFcVqQEIwn88dTQdlrK1BOB23Hj8wKyEAlyvxGqNItyQqbNfLIBtvXvhvO5l0ePhsak3rtrzRNeTLW3esp1Q==","signatures":[{"sig":"MEUCIGoHuzsjtqp52aB9B9EQyyw4FUXGH0/SJrOv21wL1NCHAiEAyLJpVM+9M0ztPsLqisHjRsdxqIKOEReaX5kxRmvgiHA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"d29ff5a957dff1a1b49dc457756e4e4bfbdce085","engines":{"node":">= 4.2.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.14.12","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.3.2","dependencies":{"ws":"^1.0.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","sinon":"^1.17.2","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-2.53.3.tgz_1467155057997_0.9474922465160489","host":"packages-12-west.internal.npmjs.com"}},"3.0.0-beta-1":{"name":"selenium-webdriver","version":"3.0.0-beta-1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.0.0-beta-1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"a75fe1891fd73ead3ba94ed5fd11a6375539c322","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.0.0-beta-1.tgz","integrity":"sha512-WuYCIVVEfO9YCtiTqrjzztW59IkRh4rImNZrr/K8joM1b4pvI0x1RZg9tB1BqMvidnS+Af1M/kND60DJuL0UnA==","signatures":[{"sig":"MEQCIDhYQB56ZLrWZkfLyT7DgHnnMPooedYPXmT97oQLW5EiAiA3vqfzLFKoH5Va7lpvBDjOAYWwvFba9DIPm/TlvIpcUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"a75fe1891fd73ead3ba94ed5fd11a6375539c322","engines":{"node":">= 4.2.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.15.8","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.4.7","dependencies":{"ws":"^1.0.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","sinon":"^1.17.2","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.0.0-beta-1.tgz_1470504088805_0.4462254182435572","host":"packages-16-east.internal.npmjs.com"}},"3.0.0-beta-2":{"name":"selenium-webdriver","version":"3.0.0-beta-2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.0.0-beta-2","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"0c4fe134aa827d143ea2acb1f1fe128cfb829526","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.0.0-beta-2.tgz","integrity":"sha512-FaICg/9dJI3qGLanDis+KS4TGOfvn5mO7t0dDbV5TLh7q4i9dHCdaJUNW2w6D6pRZj8rDHkbIEq0t7gD11bE8w==","signatures":[{"sig":"MEQCICynV66hth5nP8PiEVCcJYGpLp9YI5+3WL98z/uBK0mdAiBU7Kt5/Mkvv31JvlEhfX5+eqe6qo5/BudJiE0zt8YUTg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"0c4fe134aa827d143ea2acb1f1fe128cfb829526","engines":{"node":">= 4.2.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.15.8","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.4.7","dependencies":{"ws":"^1.0.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","sinon":"^1.17.2","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.0.0-beta-2.tgz_1470627902526_0.313089708564803","host":"packages-16-east.internal.npmjs.com"}},"3.0.0-beta-3":{"name":"selenium-webdriver","version":"3.0.0-beta-3","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.0.0-beta-3","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"cf12c9cc57c1c781c51ae54ab71f99913cae9572","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.0.0-beta-3.tgz","integrity":"sha512-xrsAo9LUpc0+CwIyljMsqO8v/78Md6M397oIDQ71582SSK3OOdfwDb0jqGMc+bKko7n/woYhXZ05bFRX2eH+Yw==","signatures":[{"sig":"MEUCIBpn0vZ8hK7MAcuubtpHxzOqOdNRoxHyUi6IV2G+kXc2AiEAurpvbKpOTQkm9HvT8LgB9bZCTD9uwM5TAaEqWEqjMOg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"cf12c9cc57c1c781c51ae54ab71f99913cae9572","engines":{"node":">= 4.2.x"},"scripts":{"test":"mocha --harmony -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"2.15.8","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"4.4.7","dependencies":{"ws":"^1.0.1","tmp":"0.0.24","rimraf":"^2.2.8","xml2js":"0.4.4","adm-zip":"0.4.4"},"devDependencies":{"mocha":">= 1.21.x","sinon":"^1.17.2","multer":"^0.1.7","express":"^4.11.2","serve-index":"^1.6.1","promises-aplus-tests":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.0.0-beta-3.tgz_1474473901802_0.1357042295858264","host":"packages-16-east.internal.npmjs.com"}},"3.0.0":{"name":"selenium-webdriver","version":"3.0.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.0.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"dabd8112aaddc786e5cf72edcb53343ec8346b49","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.0.0.tgz","integrity":"sha512-civg6yq3i5vtfuSR3sAvMmlrQQGqa1wEf0XkNKc2PjWBnkaS2PO9t5p7mDOfGBsLlMohvMeAbOZLhcKBHBDC5Q==","signatures":[{"sig":"MEUCIBlI6FcAbhGWyf9ZC2pLlTg/4LgRsIDqkdV+aamYJrnaAiEA5q0PJIspuPby8AYRJ49p40X2nmt9lIMZgaPLL+y9+GA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"dabd8112aaddc786e5cf72edcb53343ec8346b49","engines":{"node":">= 6.9.0"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"3.10.8","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"7.0.0","dependencies":{"tmp":"0.0.30","rimraf":"^2.5.4","xml2js":"^0.4.17","adm-zip":"^0.4.7"},"devDependencies":{"mocha":"^3.1.2","sinon":"^1.17.6","multer":"^1.2.0","express":"^4.14.0","serve-index":"^1.8.0","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.0.0.tgz_1478197831017_0.5427238214761019","host":"packages-12-west.internal.npmjs.com"}},"3.0.1":{"name":"selenium-webdriver","version":"3.0.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.0.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"a2dea5da4a97f6672e89e7ca7276cefa365147a7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.0.1.tgz","integrity":"sha512-AUDi3TbBmFfbSJrXgHxfAlv3aqpWGYZnXYz47qKze/VJil0JnYgTGqxLIXrE+OmNTnRbPIzg10wWye3G+Z+Acg==","signatures":[{"sig":"MEQCIEo50b9jyvTh5Yl5I7WYg+M9um0fO7PSCtr5YjJ3b3afAiAfPDelNo6CSZtmsPXI/ZJIc3AwGsrzpjZ50HMGd3TcSw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"a2dea5da4a97f6672e89e7ca7276cefa365147a7","engines":{"node":">= 6.9.0"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"3.10.8","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"7.0.0","dependencies":{"tmp":"0.0.30","rimraf":"^2.5.4","xml2js":"^0.4.17","adm-zip":"^0.4.7"},"devDependencies":{"mocha":"^3.1.2","sinon":"^1.17.6","multer":"^1.2.0","express":"^4.14.0","serve-index":"^1.8.0","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.0.1.tgz_1478644054108_0.8589885896071792","host":"packages-18-east.internal.npmjs.com"}},"3.1.0":{"name":"selenium-webdriver","version":"3.1.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.1.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d76182940cfb991edf4bc1c28318f4e7bc7730df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.1.0.tgz","integrity":"sha512-FO1VXHobAuSXRexYd67/jrdRltQ7e0VB2WZbJXYoRDg5SUPahpZvZXQFZGlIkadjbTu7PUgLHUl6LUXITLnSug==","signatures":[{"sig":"MEUCIQDHZ97PeoThKThfYj7DGoKrJM2XlIzrNOdz3edo1avdiwIgN5Z1aKwhZ+OHeEYIqCivY+l/C5KZYpqRCS44ey5bQws=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"selenium-webdriver","_shasum":"d76182940cfb991edf4bc1c28318f4e7bc7730df","engines":{"node":">= 6.9.0"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"4.0.5","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"7.4.0","dependencies":{"tmp":"0.0.30","rimraf":"^2.5.4","xml2js":"^0.4.17","adm-zip":"^0.4.7"},"devDependencies":{"mocha":"^3.1.2","sinon":"^1.17.6","multer":"^1.2.0","express":"^4.14.0","serve-index":"^1.8.0","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.1.0.tgz_1487184770701_0.44056453346274793","host":"packages-12-west.internal.npmjs.com"}},"3.3.0":{"name":"selenium-webdriver","version":"3.3.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.3.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"f14d9b04cee9495d4284d22105b189b8305ccca1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.3.0.tgz","integrity":"sha512-zHdqHyF+DClB5+RPETAL1yyqnbpt/d5t2Nb6xO0dR6DJ5s048iLSqR8Q+stFtUpo/0koQ0135Mbi35HUXax74w==","signatures":[{"sig":"MEYCIQCaNnpRIteMbYQWwqy9ewpStD0fbqituVq1n0nHtl93oQIhALBilQafpBnZlHsCK2MaQtZO2ZSJCvkfq5a2Mt0xe0kh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"f14d9b04cee9495d4284d22105b189b8305ccca1","engines":{"node":">= 6.9.0"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"4.1.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"7.5.0","dependencies":{"tmp":"0.0.30","rimraf":"^2.5.4","xml2js":"^0.4.17","adm-zip":"^0.4.7"},"devDependencies":{"mocha":"^3.1.2","sinon":"^1.17.6","multer":"^1.2.0","express":"^4.14.0","serve-index":"^1.8.0","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.3.0.tgz_1488766606791_0.44574250956065953","host":"packages-12-west.internal.npmjs.com"}},"3.4.0":{"name":"selenium-webdriver","version":"3.4.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.4.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"151f7445294da6a66c49cc300747a2a17e53c52a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.4.0.tgz","integrity":"sha512-Bfq9FX33fFSj0F26BaaZllQBZl3d9FykVaH4CEJfwtN43+V8jrTpuhfiR5Zm9nkXjMbcEQz2EKWAjNzV8Hkqbw==","signatures":[{"sig":"MEYCIQDvjHKUGCpWEk+fZ7426BIXKpCgY73MkAQTYXX2Io2ePAIhANxzloUfwIWMfAm+nc+5kaBoCBokFXEXfhko7SBXpOtX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":"build/javascript/node/selenium-webdriver","_shasum":"151f7445294da6a66c49cc300747a2a17e53c52a","engines":{"node":">= 6.9.0"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"_resolved":"file:build/javascript/node/selenium-webdriver","repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"4.2.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"7.9.0","dependencies":{"tmp":"0.0.30","rimraf":"^2.5.4","xml2js":"^0.4.17","adm-zip":"^0.4.7"},"devDependencies":{"mocha":"^3.1.2","sinon":"^1.17.6","multer":"^1.2.0","express":"^4.14.0","serve-index":"^1.8.0","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.4.0.tgz_1492806787375_0.8394842187408358","host":"packages-18-east.internal.npmjs.com"}},"3.5.0":{"name":"selenium-webdriver","version":"3.5.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.5.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"9036c82874e6c0f5cbff0a0f18223bc31c99cb77","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.5.0.tgz","integrity":"sha512-1bCZYRfDy7vsu1dkLrclTLvWPxSo6rOIkxZXvB2wnzeWkEoiTKpw612EUGA3jRZxPzAzI9OlxuULJV8ge1vVXQ==","signatures":[{"sig":"MEUCIEZ8WsIOpDvVcxs+Nv4aVivx7IrjInnajIPyldPvKBSCAiEA0FAWcux83XkRNCZGmDKakKHANzpaCEOia6TvOWBbCNs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","engines":{"node":">= 6.9.0"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"5.0.3","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"8.1.3","dependencies":{"tmp":"0.0.30","jszip":"^3.1.3","rimraf":"^2.5.4","xml2js":"^0.4.17"},"devDependencies":{"mocha":"^3.1.2","sinon":"^1.17.6","multer":"^1.2.0","express":"^4.14.0","serve-index":"^1.8.0","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.5.0.tgz_1500863507366_0.07268205005675554","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"selenium-webdriver","version":"3.6.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@3.6.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"2ba87a1662c020b8988c981ae62cb2a01298eafc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-3.6.0.tgz","integrity":"sha512-WH7Aldse+2P5bbFBO4Gle/nuQOdVwpHMTL6raL3uuBj/vPG07k6uzt3aiahu352ONBr5xXh0hDlM3LhtXPOC4Q==","signatures":[{"sig":"MEQCIH5kf6b432zhUi3AaYLCEu/kiLt5cTgubDeJU9BcA8uDAiAe/UMymDTlOhAbSWHf4lEiXyQ+iYJdaOUdImFaHCO0Ww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","engines":{"node":">= 6.9.0"},"scripts":{"test":"mocha -t 600000 --recursive test"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"5.3.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"8.6.0","dependencies":{"tmp":"0.0.30","jszip":"^3.1.3","rimraf":"^2.5.4","xml2js":"^0.4.17"},"devDependencies":{"mocha":"^3.1.2","sinon":"^1.17.6","multer":"^1.2.0","express":"^4.14.0","serve-index":"^1.8.0","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-3.6.0.tgz_1507248958050_0.5187416786793619","host":"s3://npm-registry-packages"}},"4.0.0-alpha.1":{"name":"selenium-webdriver","version":"4.0.0-alpha.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"cc93415e21d2dc1dfd85dfc5f6b55f3ac53933b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-alpha.1.tgz","integrity":"sha512-z88rdjHAv3jmTZ7KSGUkTvo4rGzcDGMq0oXWHNIDK96Gs31JKVdu9+FMtT4KBrVoibg8dUicJDok6GnqqttO5Q==","signatures":[{"sig":"MEUCIQCDtukCq0AC+KMXfFustp8lMSx33yc3VpJ53TFl3eY7MQIgDLW2Pxyx9jES3sYR7XfrQq8Tpn175rNMC4LSs7xUXVQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","engines":{"node":">= 8.9.0"},"scripts":{"test":"mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"jmleyba@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"5.5.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"8.9.1","dependencies":{"tmp":"0.0.30","jszip":"^3.1.3","rimraf":"^2.5.4","xml2js":"^0.4.17"},"devDependencies":{"mocha":"^3.1.2","sinon":"^1.17.6","multer":"^1.2.0","express":"^4.14.0","jasmine":"^2.8.0","serve-index":"^1.8.0","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver-4.0.0-alpha.1.tgz_1515862657200_0.4363542755600065","host":"s3://npm-registry-packages"}},"4.0.0-alpha.3":{"name":"selenium-webdriver","version":"4.0.0-alpha.3","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"dhaeffner@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"fb974f29696a6801ecaf203e38a65c3dbe7e363a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-alpha.3.tgz","fileCount":95,"integrity":"sha512-78a8bbvVtl3asv5JAiBXvK4KQ+GmXBCMO0DU1ZMbdO9EAb+ydPA53CI4ZA+I8muSLSVgNhRAnsndNWZLIQN2LA==","signatures":[{"sig":"MEUCIQCWaVkIzuHDsgR0D/cSVKefv25/vE4a4jFSNUd73y144AIgPkSW6Xpo5pxMGJKhpAjRGkLx8DVN/qiZe9o+t+KLZfU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":946235,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBh01CRA9TVsSAnZWagAAYwQQAJKH1y0UlGlORT5RNx2Y\n3LpSQICjmg4sThkqZJwCoHiHkVpuuqV+h2hW+SLKADrpQoAPaPczr0wnLhO2\njHNR4EEwvAlLvp3qoXVMn/urj1R13ZCwVtHlpd9maWUQQEP6VG0dV/vCfTXe\nOUy0RvLGIJpL8Ph8wiIErJ+QI4E8ir8Idj+eSHfA4Gf3wt9T/XI8tPCndO9m\nn/pNYIqk/Aoz3hVefOxndBCOfiZyEFqfe3w0NPqUOvLOmDPcZyx46DR5Q7JZ\nQox/l2TZJTRIvWUuATuD9JH+6/afy0uW+aEBPesOx16oo/Y+B3DUdWFUWc8Z\n3c3cywGQfEHfnB76s3P0oaNgSEgMP4HJt+mzSbSY7vug0uEmjIJ/eT7HLiw/\n4tTBbUSjF/Z9HZN3xcCi60XpZL31TV8s83D/v6uNFlW9ruPjGZinz4Lb/4P0\nkKDApgvmBgEFGT/xlSX8Sna2XStK6FM3DteliUW6yHmyAebV99fKs4z3EMfZ\nPJX+KDtmZlEigd+mBxoHxokT0n1a5yZwIGgNWibivZkkwJvk2iuV90O+/07B\nte8vp7DsLJJj2TpzZYgRU8FNVkG8MhaLjiLwEj0HsOLlrBroh075rOjv2Y/k\nt40ZivF8advGdF3f8SJ/AnLmgqTIfNlYk1DVdNXFnP3y20rpYktKee4w2Cbc\ng4xq\r\n=TPmT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"test":"mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"dhaeffner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.9.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"11.7.0","dependencies":{"tmp":"0.0.30","jszip":"^3.1.5","rimraf":"^2.6.3","xml2js":"^0.4.19"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","sinon":"^7.2.3","multer":"^1.4.1","express":"^4.16.4","jasmine":"^3.3.1","serve-index":"^1.9.1"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-alpha.3_1560681780352_0.12580473541640425","host":"s3://npm-registry-packages"}},"4.0.0-alpha.4":{"name":"selenium-webdriver","version":"4.0.0-alpha.4","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-alpha.4","maintainers":[{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"dhaeffner@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"73694490e02c941d9d0bf7a36f7c49beb9372512","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-alpha.4.tgz","fileCount":44,"integrity":"sha512-etJt20d8qInkxMAHIm5SEpPBSS+CdxVcybnxzSIB/GlWErb8pIWrArz/VA6VfUW0/6tIcokepXQ5ufvdzqqk1A==","signatures":[{"sig":"MEYCIQCSsh1dvWY56mPltO/11/vawPdg2rT3CHKe/8cWex8NxAIhAOt8RNk5hTP59GPpSKeEjf/Q32Me1vPstVU/6JSPTSSk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":600977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEHiFCRA9TVsSAnZWagAA9BsP/RRPI2Oan6xdi+jJFeYu\nxhRlD9rj5lmLUZGFUG0AivURCksUDbZs88mo8UlPdCN1Npix2vn/emJfoPQq\nAPiJnqBxeR02TnGqcsVzQKR8vj1nKtpDPNMEdLVpEVbzfflHy/zbEKMkKKdH\ns8IfKzgEkQsC9pOLMvGTfB3rnNMbopWiAKEEVme5y1UjlVvbSPzHTG4xpDGx\nG1iCcuBiKaNg9637/F8HGV+QSttVz3Jhd140X1z+ZxNIj5O1ws8dwXRwSSO0\n/Cy4UQYbIuK0xJqKxQtgHCk03bfdYWD3SBj2fbVjv6IkPv1u32J0jWEOs9+7\nrbTy0O6fVXu88HPIHmFuQ7cFwvo7Xw3CXUqtNSaurPvzH+s9n1/TFlD6OnRs\nX/L2XFKTSI+HZ/JhbEYVGXvy/taFXFa0Z9drPRs1wJfH/rmXRERydn9rJ43J\nceUt+LniBEFH3kSH0NZqnqh2WKQ3yXLD4LawgaW6/+bbRB7hJNZZjVQOHMEb\nTHdh31Hzei6NrbFdBGlIceTRKq/NuyPmEfYBJRptBV08dCrubll+IWoQBA9C\nI2a8ecpoPf5XnhtCVNAnqrFV3vWtnG2rIYYqM4pBHjMUmS9kSVu/qNcoxLy6\nWug2Ikm8xXII1+AUlKhwZOePSssiJDWdnv79GQrr3x7tos3hylqM59hn3YAA\nqyR7\r\n=UVFW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"test":"mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"dhaeffner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.4.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"10.13.0","dependencies":{"tmp":"0.0.30","jszip":"^3.1.5","rimraf":"^2.6.3","xml2js":"^0.4.19"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","sinon":"^7.2.3","multer":"^1.4.1","express":"^4.16.4","jasmine":"^3.3.1","serve-index":"^1.9.1"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-alpha.4_1561360517029_0.6068574936158184","host":"s3://npm-registry-packages"}},"4.0.0-alpha.5":{"name":"selenium-webdriver","version":"4.0.0-alpha.5","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-alpha.5","maintainers":[{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"dhaeffner@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"e4683b3dbf827d70df09a7e43bf02ebad20fa7c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-alpha.5.tgz","fileCount":44,"integrity":"sha512-hktl3DSrhzM59yLhWzDGHIX9o56DvA+cVK7Dw6FcJR6qQ4CGzkaHeXQPcdrslkWMTeq0Ci9AmCxq0EMOvm2Rkg==","signatures":[{"sig":"MEYCIQDlKzJhEFdpMt3JGXpDejOAmEsDpTYdzZXxGVLH8x2MeAIhAKu5z1Qv+gXT7DftEhQuBgULDXBmYLmF/9bclpPUX5Xe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":601095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddQa2CRA9TVsSAnZWagAAPvYP/j/nLwCSUm+0m6aZD29j\nUlNlNQKW4Wm+M9h5kN4zuiffdGstoUEZZVi7lUanT/6s0PMiWICRBruuUrDo\nKoO7woX9NQiSEa8LxqXNpW+OoDdL1hpbIZCcv4BSHXcHccYp/ypB9t/Sp5qJ\n8Z0diGEYNw5Pm/YTAASxEezlLyjNS1xQESzEucOKG6vU14khFw6axjL1i1Xx\nrufI7zAh7b7qWDQOsu9eMjYAkwYxl7OFO/mYBlsVZyeObA5UuxJNvAcDVxDR\nETVD9mZbvruVsNxJOPKQxrFM6tOTOvHa3OUNchssgcZ+Hbu/L8K0qoxZsNRq\ntVqm5Dik0qAzGkMxQhg0wPcsXBPgnT+1Z/FlbxZa0VHxAPK/tKxTHnt+1Nsf\n5Hxu11eCqLX0xo01hLfTCNPN4lqeqaCwNYj/HZiYzWVI1KUvYJU962acIjYO\nNAiHO38nrmZuVzubmpu8iuhQLoCl/8uQk660wi7XUrR+U/bct6jSUKQG7CT5\n5f+3SFocapCZzVjUwVniepqVkZRhB4me6nCSTMbyi7Qn6AW0f8GDmygSJ+OK\ndkKtWg916wYxdZZhIg4wkQJs3XFC5jLNTbn3a8CqokvYLaDPUqSgr015SyH4\nQv7ABwVKJJq8izNRYIQnES/+DpUWCIqWXcLtDGjoxts+HYYg+FGR+6kEeOqq\nnLlK\r\n=4Lir\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"test":"mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"tomer@corevo.io"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.9.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"10.16.0","dependencies":{"tmp":"0.0.30","jszip":"^3.1.5","rimraf":"^2.6.3","xml2js":"^0.4.19"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","sinon":"^7.2.3","multer":"^1.4.1","express":"^4.16.4","jasmine":"^3.3.1","serve-index":"^1.9.1"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-alpha.5_1567950517694_0.7141522608553692","host":"s3://npm-registry-packages"}},"4.0.0-alpha.6":{"name":"selenium-webdriver","version":"4.0.0-alpha.6","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-alpha.6","maintainers":[{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"dhaeffner@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"42715d9a8893ebc4bc8acfb4eb1d5bba8ae51435","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-alpha.6.tgz","fileCount":37,"integrity":"sha512-NAOPV2NlmltsBHRsu8+Li76Fl8M81FBwxmgTLCu69LiJK4N65ik60YfanVw6KfWwITPSIXQK+cy+vGm3w1NCFw==","signatures":[{"sig":"MEUCIHHDIYFvrKc0kLC0SAI8lssrFdijlgdhIMD/95pelMFGAiEAn3BcP1vdop6mc2WVCVaA6arZ9e8+ZDYV7Oo0+9pCloM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":573557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeYMGfCRA9TVsSAnZWagAA5R0P/10F3O4haKLTueGqu+7L\n4Pfw2NbC1+8gP1bhhSKjCF13zTjAps0yEGYBtREFvTDu0LcjOkvNmBDQBinU\nNk2BMxq5lUJHodyquWWy3Jz3LjaCMlFIEO+aga606Z71qXZVFjDHgG+BxDdA\nU2KYePD0mRwMk41YulUxv+z9wW9ra9Yx+PGHqPferOwaBPu3wX+xfHhEbyUw\nQNj6RoonJPnSK6Onn346O45O0933ffHZHexOCp2hgbXVRkVGn7/fZBISJVBY\nP4yj75CbB79PCSoB5HtySlXvdL2rloftEztnJXprhyzmxDPFQjub6wQyX+qp\n7TnTyayR7y4gORdvC0y3UqUfuV+BsAwkF+30cxzG/qqxFpUryUzO3XLetJjE\nbwg47XiZo/9mDsi2eGHx5GDBJxwVjDOs48Phwq1VcyC1L3cju48iKVPcp3ay\nH6QJ1cfITuvmnAZEyhtXqlpzM0DfVznjWdiHYJO/WuWxwn5Lu3aq2bgffU4x\nC61vmeCV/JOaPOuF34djB9Pc+LJa7YqBQy2L6eHb3WXiHBxqtbIvAytMvQyQ\nmldH4XMLPmT/qbiRwVqFzfv4wNtvOQWOBEKOKSDPe32nJ78qqD+xAObNXm1x\nsYbuddreUciTz9UOk0LX9U2X9H9t0nhuRDll4PHZvnca6RQ9JQ7yCOoocISR\nAItD\r\n=13vk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"test":"mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"tomer@corevo.io"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.13.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"13.8.0","dependencies":{"tmp":"0.0.30","jszip":"^3.2.2","rimraf":"^2.7.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","sinon":"^7.5.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.5.0","serve-index":"^1.9.1"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-alpha.6_1583399326395_0.5286612057329814","host":"s3://npm-registry-packages"}},"4.0.0-alpha.7":{"name":"selenium-webdriver","version":"4.0.0-alpha.7","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-alpha.7","maintainers":[{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"dhaeffner@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"e3879d8457fd7ad8e4424094b7dc0540d99e6797","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-alpha.7.tgz","fileCount":37,"integrity":"sha512-D4qnTsyTr91jT8f7MfN+OwY0IlU5+5FmlO5xlgRUV6hDEV8JyYx2NerdTEqDDkNq7RZDYc4VoPALk8l578RBHw==","signatures":[{"sig":"MEUCIQDart1DwlsShWQwvavdxhvdXc7dJkW5ySQ2vQZLPv8xugIgGiL2WW6T3+Uq1M37p1nZXwnvqTRKbBW9WKNZWWutqYI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":573553,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeYNv6CRA9TVsSAnZWagAAL5EP/3lRE920qZhrkrUtDJcL\nbrQ3MJE/hgohGl4whuFRU2LfB1YZig5duGjk+YJIAZe0gVssI+ZjMvUwT9Pk\nw3YgsE0EEJ0FSabDmJ162WNTAWXFFUN2WBHUbDGsKTC/j8cwy6l4KT7LpiSM\nEHoZbBY2ZRRDqcOycsWTPbXvBMQJj/omPqYKJS9W/Y0OxxXg6yfiJNFZ9Y3o\nMTQ9jkAq25FafUtV2+NFSdV6p48ilikRA+4HFj0f80WIIhwbnOp2ppF5o4xK\nC84JHkqSKP88HcyhZTi1poPfYdoQEXR+v7IPXe6IvhKxW5ZmJkzKx650a5Po\nNRxYhvP6IB1f1n9k1qbBqkipR8bzYEOLpLDcha6gPwXQkIsSWzpW9S276upl\nWAErVM853f61Lyw/Bhyk9Ye/a0mS+3m1DxVT7DU5mhmW7wh+fy8qGAUV7S0h\nEKvcoidZ5CGUMzah+nW/OigvQgO8FESNR0owQxWmiJ0uT7fBxutkNwMFQB2T\n5lFSfMzVSjjcrFG88noeK0z3OEf1f58p1nIkID1S9RHyXNjQ9FDGF95mu168\nx/IkXduzYVWNweeAj63u3rGyHoNLYrz5prT/iNbfpn1+G836wLk7mpk2jqyr\nrosRgE2z0A2sWM3wbFvHML6/zibHswEGMHpCP80Usi7TbvrvZ9PoUvMO3h+a\nlcvF\r\n=G24K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"test":"mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"tomer@corevo.io"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.4.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"10.15.3","dependencies":{"tmp":"0.0.30","jszip":"^3.2.2","rimraf":"^2.7.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","sinon":"^7.5.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.5.0","serve-index":"^1.9.1"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-alpha.7_1583406073977_0.42351435954838745","host":"s3://npm-registry-packages"}},"4.0.0-alpha.8":{"name":"selenium-webdriver","version":"4.0.0-alpha.8","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-alpha.8","maintainers":[{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"5cb99f4239b39dbdff6ac796893f873d044dd3bc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-alpha.8.tgz","fileCount":43,"integrity":"sha512-yPSaiWySZTEbxuuWQMDqdXh3H3N4Aiw/bSUjpkKMPWWCysfPqUncrq6FewBqdxWD1wQKzy5yWaQMGsgTY/0rCQ==","signatures":[{"sig":"MEYCIQCspeTSKE7wzfyaS22dF8XsVxmPOcTHytsAcziTZuQRpQIhANLwku3CRO+yFYED65wWnW9pJPo7omuQevgQ5D+PhGIt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":680619,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfycQJCRA9TVsSAnZWagAALRcP/imZixpLW++5w14FRTFy\nYKspiykftQC3Rduynv1Y0GrBkbBno0cJfl9xpzSA7T78sdc4KMg5wHqUidF2\nuZ/RL0k/z7mVZA8msLniJ6DfdZ9b7+XYlB5jPODWHohFABZNTDDohO1XuQZx\n+bSU4vHc8qrP1sNjbPdtMyRWD6frPgOqDdmctSyy3lMvjY1RYrCphIvcugGM\nJJjbIDSnQbf+x3LOAXBPYcBNz3F+DGrCebzLBiHo/nBv7XIzFDNAdVKee3y5\nhUajPYHal3DseFIcCHn1KPZjFXFjIlj+jI+uJ5taac4MVFOq3XLq5rxulsl+\nGH54R5OHPPOvBvHcdB4r6FjRf3PinJ4+AJ+xpqrraU1cLsci2DG0H+ua/dh/\neUlABxiCNj1ZqJBBJL/dwnNxthnoHR9N8dHdOi6o3U/EOXagXwMnyVeu60cc\nekXb8KA9LPlpzjLfwAH7pOSM4U1GTfqgA0pb+xrpYnGzFeDp81ETv597XY7O\njJbcwjCNZZDUU1vrSfuv02ob0J/B/MWk64jYpq5Guruto0Y+Uxl9msFFIvwf\nLaVlFF9kIL1e0w+WNPunsZq25Mpt0ADaRvvCKoGbhajONQ3rZiCbBX2Cf07i\nSGkrHmTSgJxBgFyrYOWLrSQ6EfezAkXdJrFTimuV8DMGZAqw8pGRBXT/5tUW\nwVaY\r\n=8BRh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"sri_harsha509@hotmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.13.4","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"12.16.0","dependencies":{"ws":"^7.3.1","tmp":"^0.1.0","jszip":"^3.5.0","rimraf":"^2.7.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^7.5.0","eslint":"^7.6.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.6.1","prettier":"^2.0.5","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","eslint-plugin-no-only-tests":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-alpha.8_1607058441234_0.036869384055382204","host":"s3://npm-registry-packages"}},"4.0.0-beta.1":{"name":"selenium-webdriver","version":"4.0.0-beta.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-beta.1","maintainers":[{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"db645b0d775f26e4e12235db05796a1bc1e7efda","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-beta.1.tgz","fileCount":49,"integrity":"sha512-DJ10z6Yk+ZBaLrt1CLElytQ/FOayx29ANKDtmtyW1A6kCJx3+dsc5fFMOZxwzukDniyYsC3OObT5pUAsgkjpxQ==","signatures":[{"sig":"MEUCIQC1MjIPYL1XY0IR8tIZxU2F3rQYXNl/rJ0IDVQU5iTgdgIgfFmkHJrFigwxMNSWwqU6iAqNtj6FDVPmkNNQ+WapJg0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":710984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKoubCRA9TVsSAnZWagAAf3YP+QC5O963NDzcCzMxxLM0\nwrP5IYkiX76B4ETnvWsgmQx7fbVfz0pE7tA64ZdAeNB7mrX+ARcahoaI10zH\neQXsZAafFnIKDkqzsh0L7NlXJzE1HqKeT46iA9zkPG4zonRTONRObHh7H8tz\ndRGjRJCsdUVCIZJ+S/LkdGUIWOxLR4SNjm94A8kfoJNbPuATWJ2UUI5Xs1v8\nqFoepZ1S6ykLUk26T77MWtbxCf/opLF5kE8vSU++KncceOCw20nOrZG7igQx\nxMdSltY/iaumOuZnpKxfFIE1GRMwX2gn0ewiXpMXg14BBqank+ZcJL6FnFux\nBgpNfHYR1iorRRimR4Z46+scug3AqG34NWRt3OF0vfNs2SVdq5QoWJLRaZ4I\nyqhbbVsPF4nRwTnLJxqzX2T/og0BPqa7YENvrsbQZ5LRH4cM0gI0xUVjWkE9\nDyiGCZVg6nnuBmbQkvZv5fcyyoH0x2UXb/RANXlZsKBAip/D9fkR/lofkGCf\ncgdmPTT3rGK3JAPcqA5DQS6OmhSn+0kvK7W6OnMa3EBfdketOvS/D4+fF+O9\neSVOa0hnuYSFZqbx+4C5ztCy8gmEw969jI/8XNB5qNi2HUYTApi6raetiUnM\nHdkSxqIi4sf06sB5pJugI6vanaPfO0XbRSCqDG4WA8D1Gep5v3kWSqt84Gbt\nol8Z\r\n=MRGB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.12.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"12.13.0","dependencies":{"ws":"^7.3.1","tmp":"^0.2.1","jszip":"^3.5.0","rimraf":"^2.7.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^7.5.0","eslint":"^7.15.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.6.1","prettier":"^2.2.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^7.0.0","eslint-plugin-prettier":"^3.2.0","eslint-plugin-no-only-tests":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-beta.1_1613400987160_0.2541273494529197","host":"s3://npm-registry-packages"}},"4.0.0-beta.2":{"name":"selenium-webdriver","version":"4.0.0-beta.2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-beta.2","maintainers":[{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"a481c1ebcebd167c5d842982db85dd8ee930cbce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-beta.2.tgz","fileCount":49,"integrity":"sha512-uuNl3T1JjhrXCO4UAAy+iIIgZ/PqgYNiYvy+yfWCY+x2vHH9y7tIdD9a/q1rwbf/5jD/ENwYlVuNj46uIngknA==","signatures":[{"sig":"MEUCIQCoxN/TXNrMpTfuULejmW3L+mr5m4OZUoFla3C3FZQyrQIgNcVB2q2TepctgOO1CwvvMD/H6v3PP2MKubSYLtp+SEk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":708948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgUOnOCRA9TVsSAnZWagAAQ5sP/0+4IBa2xEgAb6GBa0fS\nXGp4ex17y/Bj34R8FNChDb63w7FVyhbisCNWDxyvr3u32E1mwOjoKrzvLAtL\nEB2wF7KvyU3Vqt16XS/9kQiGZAzNxZlKBhedOr4pIWHChdu9ogGhE2IzqtUF\nY1CFkKZEDgNhf2GVTwQ2Rq3a3mUOhaobK6UuM8tHFnwhvm+5VDDmVo/yNMGy\nTzJMG7OHjUy8wHSB1zFF7X8JMUTgsWYhm3e/L/ycN0rR1qex4jJ5vRLsV/SX\nH3BDKVxztpM3CNxP+wyG5ozUjdMGz4dJvBF8WBP+wOJLpG+IDGsFdn2hqIvr\nhpwH3ppewsMibSUUXw7ovoGUCOkivs3DUMRX47obd2o2lru/+HwC6E4p/EhW\nQBlTNE6+faMjyM0aj/M1mDtQtL3B/YkzTI1adfUQE+q2PomSLJa8u/JH49X7\nG5KQGUUoEDT18OMx1YGEifm6gAY3xO9iWWUvzYY0KJggwe0w3yv8OIcw/oLv\ns+p81fYgdMAYtesGsT3CDe4koyg/t5Je8UPZM7E1TpByb/b34YVXzNC0Jgo4\n2YlSHz6ykl8hiuL704VmguK95Tm/vqaPvZGg7ZpHbG3POCPKRFqNKILRFE2O\nVanU5LRW1Bwv4B+awV/jsWVscvVeKmswfn3393v9bgR6gxHPEIH3W5U02RRw\nUcD1\r\n=d+et\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.12.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"12.13.0","dependencies":{"ws":"^7.3.1","tmp":"^0.2.1","jszip":"^3.5.0","rimraf":"^2.7.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^7.5.0","eslint":"^7.15.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.6.1","prettier":"^2.2.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^7.0.0","eslint-plugin-prettier":"^3.2.0","eslint-plugin-no-only-tests":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-beta.2_1615915469671_0.7424845013240169","host":"s3://npm-registry-packages"}},"4.0.0-beta.3":{"name":"selenium-webdriver","version":"4.0.0-beta.3","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-beta.3","maintainers":[{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"8c29512a27ca9c1f95a96a9a8f488304c894390e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-beta.3.tgz","fileCount":48,"integrity":"sha512-R0mGHpQkSKgIWiPgcKDcckh4A6aaK0KTyWxs5ieuiI7zsXQ+Kb6neph+dNoeqq3jSBGyv3ONo2w3oohoL4D/Rg==","signatures":[{"sig":"MEYCIQCmgsiLBLX7eFxM6JQ/zfDYQDBWH4I/0p0Tt0URmySlfQIhAJqVVQZwiUvxFD8jyg9A90Gxlo7qL2xIOwFtfqbYqK2V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":676429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdeYOCRA9TVsSAnZWagAAU0UP/3Ztl7eWK4TnHTIcC5dv\nQpYlAMFU3vC1dLD4mItxm8D4q0rQDxlyLCetEUxNYMhjJvbt0mbzcZY6J/nM\nl6xQ/C1hNtKz/ibqT0+ro0jpKtAFOsoojpwd6lj6l/0pwtvl6gaYq7QMBvq6\n4HeedxLOOpHIqQDLSoODyRAA4TzB/T8ynIGUkHF9kGWpDrr5M8Fhp0VOPnC+\nytOjVLE6hsja2uIbmPBWhxHfu0wuzQmE1zvWmq2tCxSpjYJWKuw8b7MSYQNS\nUrWnOBmrKrCthuJGkjEp6QB2w6nSM7C/BSgThW+JJHw2YfmAamSusmGr5vKe\ndvSqV2VYbembj3TgPBR8GuuAZMlanmxhP4FAAG51iNf1c6I1jC/WIUIUU5xg\nUADwcSEe7u+MZnjiqS4Znm38WZs/LZazLiCscEQfMIkrId4WGxD6ZspRSivg\n58Untr2lku32GyRfuurpZcZdIUEGLSnZrxWt8AgubQT6sbWiPeB0EgY+6seO\nxSnby7fd8aHfT3imcSH9IavULG8yfH7Zl0xJb+WCbRPnl10LU1d48JwRwqc/\nI9XvskfIkdFMQvmuXHeek2/og83NCvSfzPaTaguqIBBVqLNDxdxtmkJhd7am\nqpe0EuSGMwPoKWZA8roG0ZYhLrQ/ZQN6W98XeQFsZHg6jbgD/4WHFV8a/7Jr\nZJu7\r\n=CiU6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"sri_harsha509@hotmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.14.11","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"14.15.5","dependencies":{"ws":"^7.3.1","tmp":"^0.2.1","jszip":"^3.5.0","rimraf":"^2.7.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^7.5.0","eslint":"^7.15.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.6.1","prettier":"^2.2.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^7.0.0","eslint-plugin-prettier":"^3.2.0","eslint-plugin-no-only-tests":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-beta.3_1618339341491_0.9919720687296067","host":"s3://npm-registry-packages"}},"4.0.0-beta.4":{"name":"selenium-webdriver","version":"4.0.0-beta.4","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-beta.4","maintainers":[{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"db4fc7505a515ea3b4a95ded031b738a1544eddd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-beta.4.tgz","fileCount":48,"integrity":"sha512-+s/CIYkWzmnC9WASBxxVj7Lm0dcyl6OaFxwIJaFCT5WCuACiimEEr4lUnOOFP/QlKfkDQ56m+aRczaq2EvJEJg==","signatures":[{"sig":"MEUCIB9PiK/N5LszDZEHdqQxts+eP0gZPunJqd9Q03T/0zoHAiEAptBKyc/3dhT5L0N3T6INp2dQTQp0wZkRqgXkr9Ys6eg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":677989,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvkAmCRA9TVsSAnZWagAAcbkQAJY3KJTqdvcbzQWf/6OK\n4P5DBEJHwZrmSlRhcUHmnCMmkRBy+NAyrUnsaHNxYQ0xm1iTBGgRHzYUVek/\n7lJyl+ksdKz7qlN6eI4Uw9Z6G5yQB5cfWaH/Vb98IvA1ccg/HAmhqjT4BAy/\nuxOImxJR19+VVqq0/7Oc5ZTwyN+5if1KZ1Euon93g+Sj3MeJ8VgfjhBLwveW\nftmkjo9Jw6VED9PpMWOQjndeYqJgZuzaQthUY2FEaOi2lQGrJuL/utx4tXsu\n7ZUFNgjfopEIfZ56BB6hj0u8ukDKYW3SUK9EZ0ku2SvzwMq0KapSEgZ92x2M\nb5fxA1PEOBu3jkdmL1cp61c+PbXRruhYLpatZovNXQKcFR+PWVA55nhPXn+W\nHzGIVA/QOvRZh0IErZNq2wxmRq6kkBwdYeXGn+COr/ZU8mJf8tMdmb/0BlmX\n9DEUMbDNwN2RFvzuMiNxnBPVzDP5TrbanxlvRsXppnYFsPLedzAzsZPQHbij\n8XeUpwvoXa4jNmOCX2dwOo3KcOrfcpVChA0R0QZ3+UYEReXu9xphqgWRp9Qs\nGwCD1JTdgkx3LhNkFxcSltUCqVGSWXVOQ2FHbpeCXESFvMhQf5J7XJ5igdcK\nfoU2fFMiQ1zWgzDvHeh4Vq60p81hyjgXJs0u2MzlIG0ViGezqxp8bAk7hZII\nBwkZ\r\n=p9wF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"sri_harsha509@hotmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"7.12.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"15.14.0","dependencies":{"ws":">=7.4.6","tmp":"^0.2.1","jszip":"^3.6.0","rimraf":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^10.0.0","eslint":"^7.26.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.6.1","prettier":"^2.3.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-beta.4_1623080998408_0.29053833777658733","host":"s3://npm-registry-packages"}},"4.0.0-rc-1":{"name":"selenium-webdriver","version":"4.0.0-rc-1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-rc-1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"b1e7e5821298c8a071e988518dd6b759f0c41281","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-rc-1.tgz","fileCount":48,"integrity":"sha512-bcrwFPRax8fifRP60p7xkWDGSJJoMkPAzufMlk5K2NyLPht/YZzR2WcIk1+3gR8VOCLlst1P2PI+MXACaFzpIw==","signatures":[{"sig":"MEUCIA4ZXIdo2CyzOEnuHuE1MTaGwOvTh9jciGXY5e8qpj3nAiEA5Hurx7ZcUaPpY6N0ivoK6iKGBRyPTX5NjhQYxCq5Nmc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":680476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhL7qGCRA9TVsSAnZWagAAvV8QAKSR9FO4uYu1eKXc8y23\n3iccb5Y5voPco3DmP1TKnyT78HS2OQU8YV8djMv0FLpuxC5RDzwc1+eJUKBL\ncVYsH90P6nlleHmPGHAgT00fNzOLUu6nTyo60C1E41U68vCPeOYVUElIulyo\nxYMymAnmovPjhB/SO63HuFCK186euTZgu3EO9WXZYEZoYNdzgzhSEpbID8QD\nR0v7DzNRGVM8r999dKGHTzj2YqrOCNf/n2npTT9/QTsGOnZYHI0XV7hRANpE\n/YXXWQ2oBbPl27cD89RWg4sQLBe5WyNr9wNnprh1I0iBh7/OEtprxexSmPDw\nITXojHR+hqASxNcXmi8nHAOJrdBuoMshAZoZkdqWWvYboXJmMQa5BA1AP6dL\ni1u57nMDTrd6B0D31fKOxb+45kc+0Ct43oryeP1CyoLV9ulfKzp5YJj3fmIV\n6a89firNhENcN+tNx4aEiGaM15XKosOXz20Kd8lIGbPIaqhXk+VHu4zp5WO7\ndGDB/2nQ6PjFDIkgOElLeUPzYI4a+JPGgYpMYzyQDwACQY+yRifAMTC2Mwx2\ngfyytuJQ9q0D7PYhc/LF1vJwMuMRwKV8DLdYiuFXwBvop2QxD0PfpmF/6e7P\n6trxfieA9EYadQCnHe7U+PFNISwvFiMR4luJ1Nd7bLIqAg5NwsFlAPOzQdol\nxcUi\r\n=5OSq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"sri_harsha509@hotmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.14.14","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"14.17.4","dependencies":{"ws":">=7.4.6","tmp":"^0.2.1","jszip":"^3.6.0","rimraf":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^10.0.0","eslint":"^7.26.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.3.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-rc-1_1630517893940_0.8889189319806465","host":"s3://npm-registry-packages"}},"4.0.0-rc-2":{"name":"selenium-webdriver","version":"4.0.0-rc-2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0-rc-2","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"f533487d2612806b12473a58d86db15293c7b791","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0-rc-2.tgz","fileCount":49,"integrity":"sha512-HT974l00r7wdZL+SPS0f8lBLVYe/aKGAFONMvVroL7z9mHm3PC30IirsYqrvSkw51Pom3XJiN5gjXBRkxuHAdw==","signatures":[{"sig":"MEUCIFAeGoJvkaGv0eDOpC4uOFaDnYRVW75YWS0n+WNk6tTrAiEA4sAnWUFbwFrH27T+VJoUH/E/qMYLpS3dwZylVvAu0HM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":685507},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"7.18.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.4.1","dependencies":{"ws":">=7.4.6","tmp":"^0.2.1","jszip":"^3.6.0","rimraf":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^10.0.0","eslint":"^7.26.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.3.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0-rc-2_1633010541723_0.5263789975362432","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"selenium-webdriver","version":"4.0.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.0.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"7dc8969facee3be634459e173f557b7e34308e73","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.0.0.tgz","fileCount":49,"integrity":"sha512-tOlu6FnTjPq2FKpd153pl8o2cB7H40Rvl/ogiD2sapMv4IDjQqpIxbd+swDJe9UDLdszeh5CDis6lgy4e9UG1w==","signatures":[{"sig":"MEUCIGYsFYvBZjwnM4i7YGgbcOf0QjjlDAVRNk5AEfq4mSbYAiEAtiDvub5j8Avgz9wKRAMal6+MHdd68Zr+8paf0vxK5tw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":685862},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"sri_harsha509@hotmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.14.14","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"14.17.4","dependencies":{"ws":">=7.4.6","tmp":"^0.2.1","jszip":"^3.6.0","rimraf":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^10.0.0","eslint":"^7.26.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.3.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.0.0_1634132786970_0.68185915281141","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"selenium-webdriver","version":"4.1.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.1.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d11e5d43674e2718265a30684bcbf6ec734fd3bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.1.0.tgz","fileCount":49,"integrity":"sha512-kUDH4N8WruYprTzvug4Pl73Th+WKb5YiLz8z/anOpHyUNUdM3UzrdTOxmSNaf9AczzBeY+qXihzku8D1lMaKOg==","signatures":[{"sig":"MEQCIFqtC3KZsa66MWCaajprPGW68HNClxvGiQ3Peh6J4ohjAiBd4sQIDzNA6WyWwwRlS8FBP+eVClkEl+INx/d55+vbaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":694725,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhm7+/CRA9TVsSAnZWagAAb5UQAJSHjMSV5fAm9nZhbOrF\ndu58poZmuvVkgVVlHD2oiNfcBZAbbbv+MGT4zxfVnG6YCw4YKdz7jAHKddmK\nxRcYd1XtXR8HtZ2ejc/6n3KJqgCroSpCr8KYMdjcZUyPNTk9jsV+Qtcq98Ox\nvpUKOkzMOloEYISXcv2MJicdThEidEV7ExedMgQSgAEDFTJnb7Q/3t1GtLi0\nu9COHzkJAcUJmlCBCU+bmzt8IXSOZ/JM7spcO9A+0Bb4dJH+55tvWNnQi1NO\na0Py5jDWRW1Aj0yReEdEyHopC6k+SOvnfWgY4DOMSp1oiyZIeY/B008A6YqP\nFMskOrlSVpHG4Hfz3hxTtcgSjC+Mhq9zZjOnAd6p9iVHlVR1iUEEVCzFwHWs\np5NAIPHWoFmuNWqYP2FAF/d2wBWgnRoI2Qt26qdrctiRWDM/23H4AT7LiB/0\nfIZ9MfO9zinBOB079dJe5axguEqdeG9W0OEe1RIpF9EOauqPdMs7z1TRiOu6\n5CEkOJ3z/5zbLd727Z2KMRY5zrH3n0HH7LXbOhfJYt4pjAozN0UYA/sJAMZo\nB46Kq+hodaNefnk2RSZUtJs9xEHpBnN+rFkzc01j3qTk/m6TZ5d0YGCO2d2l\nyeV0x+wgAMKFa6VZCam/SmH/AuF/kxJ5KUd3WjwQjV/mk/yWvR2RYFMWiyx3\nkbvb\r\n=DH8O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"sri_harsha509@hotmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"6.14.14","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"14.17.4","dependencies":{"ws":">=7.4.6","tmp":"^0.2.1","jszip":"^3.6.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^10.0.0","eslint":"^7.26.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.3.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.1.0_1637597119661_0.8144221890714176","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"selenium-webdriver","version":"4.1.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.1.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"da083177d811f36614950e809e2982570f67d02e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.1.1.tgz","fileCount":49,"integrity":"sha512-Fr9e9LC6zvD6/j7NO8M1M/NVxFX67abHcxDJoP5w2KN/Xb1SyYLjMVPGgD14U2TOiKe4XKHf42OmFw9g2JgCBQ==","signatures":[{"sig":"MEQCIBhOrvZftt9eyP6u2BzNeo8qJRH5Pcp1xqWX6eTaZo1RAiBHNXbDsjD7HbZ05IPbWH9Qn5+OUqVFLgz6nL+p7TaZcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":689614,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3DVFCRA9TVsSAnZWagAAar0QAKB2kSjfg8p87EdDdxq3\nLKefFYx4+7UR18/iRHEjEVgbCIO5I7MQLhebI6mge96a1RXx3rDBQCCIoMlz\n/wsW5Z/l7d4SNKrzclM+mc9tx36DQn1sFqciX6++Fc5r3OhcJh47GfXithVS\naMeY6G1WFuwRq1T8xVCmRdAKoIC4w/mC77BErAGSDksayMxK9AZhFPQjxvEF\nvAacIyWkMdMofZpCjJUdVZhgGE1cuD6ft2g4v+rmCpiDtaFBoPkIQJPyIXXq\nRwNtkyzNAfE7ZpfDLb5JiIlGN+UGWMI2ZYDJqtMGxxWLT22YAfIXKprrN9qv\nj0n7a2IiQrkBRhupZHLCIgXduzg1CSUN6ugsCRMqpFQmG9Kyuz3VgvbZFZk7\nulIkMgfm3gInVqS9UKXQwCnWdje3twFY/Cd7+2TjM2j3JQP6hZ1tCN0SQGFz\nFCB53X37vKsXCJHuRS+3EBwTMrO2TCHUdtD+opYq0fBMkqEDP6KULTKL+TU8\n+P2dwsa9IhS9pHwlbo6pAeQ3BS+LDvyFfGTH4YvCLZfBFvVJVAw47uHvl+/n\ng9Kf2i8JoxtNpHnrVGkA63AkF3N1FUGiqCzz8bGt+JqeVDSEMhfwSsk/4vVL\nSJHKhc9Fmpj2MJErIza1m5xN8xpFXcW35aWkMs8WjC5aqR8pUUG9fd5cdMFO\nsNz3\r\n=jczr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"7.18.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.4.1","dependencies":{"ws":">=7.4.6","tmp":"^0.2.1","jszip":"^3.6.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.1.0","sinon":"^10.0.0","eslint":"^7.26.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.3.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.1.1_1641821509098_0.23199078353942193","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"selenium-webdriver","version":"4.1.2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.1.2","maintainers":[{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d463b4335632d2ea41a9e988e435a55dc41f5314","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.1.2.tgz","fileCount":49,"integrity":"sha512-e4Ap8vQvhipgBB8Ry9zBiKGkU6kHKyNnWiavGGLKkrdW81Zv7NVMtFOL/j3yX0G8QScM7XIXijKssNd4EUxSOw==","signatures":[{"sig":"MEUCIQCR/DmmlIg+qqF9oq1y11scl1v8zhF9d7lzgQTWigxNvAIgJeM+aynaHlS2DSjJDJdejo4A/KqqKvy2LW9QVxsxoMM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":692577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiamfwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2ZxAAgYhEipgnaDKqmHVl3T8ZscrSdWshJItqJc1Ws9IBCNjOl0gC\r\n8qyl6ehEmIjIGgmBQi0oA0GqhOoByNL2FQrOBn67w10vMuNSqeuNjQoyweCy\r\nWjAAjkbQRAkYYwvO9l2uQhd6fw2T7/7K725XPV5QwrCaeZ+I7R44+eWEXQz1\r\ngAj+8I9S/T7WxbMMhtQUKiUvoqNlZpC4G+/X+Pl7cyboAbzocTw+L2j3DYL5\r\n3cvpeHhShJHdsBrU2R9+d2PHSllmrmD20TGStDnUmtDC0wmRcWukkEUVLwJ+\r\nRHVHUL6knQqyPbUiTCmV6xTsbGcHy2CSXinlq/Rz8whjAu1fhhhw6k8wNG/F\r\n/NBNERAKsysYD6YHoNMMbxQrvcFlzieS4BpM224a+u7PXDMSgpQqpmy7EPnc\r\nMhd7u+UWQx2R6+e8xRUGuc4DQiM+bF/uJp5WfHH/YLTp36Ehd3FrvvLGC0G6\r\npaEH7Pix0pzLyhDztqQeT/k5/prte61tLrEC9T/8R1JMdmQZxgOCp3zaLezE\r\nbzmRScdw9Dxzhrup7ux8uKPGPQEO46pSHLCFR2sTXtzw0S2+ni0qkvvjQHUs\r\nie8WVaQzzRLYjFfse014DwzzrOlvTXqXmrJyB++Ar9jJZgUj3cW1SzreswLC\r\nq4IXD0ihZzW4fykLVBrysViNnOiFrPO7GF0=\r\n=sn+B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"7.18.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.4.2","dependencies":{"ws":">=7.4.6","tmp":"^0.2.1","jszip":"^3.6.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^9.2.2","sinon":"^10.0.0","eslint":"^7.26.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.3.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.1.2_1651140592134_0.7207193935701461","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"selenium-webdriver","version":"4.2.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.2.0","maintainers":[{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d3c9704735c6228e09580eb4613932b30bdb4d27","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.2.0.tgz","fileCount":48,"integrity":"sha512-gPPXYSz4jJBM2kANRQ9cZW6KFBzR/ptxqGLtyC75eXtdgOsWWRRRyZz5F2pqdnwNmAjrCSFMMXfisJaZeWVejg==","signatures":[{"sig":"MEYCIQDPS2n4IW6EeObEs+DSZ63Ex4hOSQgSRjIT7Xpo86b4HAIhAPN0QPiFiorvyVxlv6eZ6+dbLjixuibz1x0MTIUta07V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":678264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikObdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpJ3Q//cYXtHTQ/ihX5l1BU22/djRcS524wsTrHeOoLgVRdWm3K8p4z\r\n0cjVkW+plQ1KWUy0QOXsMDPLSbGedWI5mpLMNj0XlG5h5r8V1Rn6Ud0pBmfP\r\nnwAyxva4OiN7s0uWtqwNXzz6yCgMkI//77PLx9AgBMdkdvqqJMsnsMQ5ukzl\r\nrzKi8kEm1/iHjDc04GrBYmWE3H/OUmDMLK0B5KLXdlRmc4LjJ2GChDtbcfRi\r\nC0ibIrRP1xcBeyR21amiaLuPCJv0z9vPv5nS8NyMf9jPhiEZnwpFvtJh7c0a\r\nf2rwPZqgZfQHdfmPrABKJJLCLF3PyYDH3AHgVjBAEIynVNLsmaJhKVX8erw4\r\ncrkYchvm8oSEy6Ybk/+UbiR+/Mv1iYS+QQuFYjubhKC29BL140C23q9kZ0sT\r\nAz/34bQHiPfd9Ko93vITJb9UYsAfA3DFsGEq/y124+qGLJlxtKj4Z4t6qaE3\r\n6I+NOo+nx9qeal6x8lAUzeXXYnmYquk0NS5HCxOmHOF+HehEcpKg+FWLLMhz\r\n9474AIoF9GM8bzHqbkLUv37rztiQT9U23YhzgwdrLMVCBLTZetAZFgc6hEJl\r\nhUoHc9p3CzCGIY4motdqUnEDtTHfjzlzqb+WCGRSJLQ3IRNcgLcXvyLKzrGm\r\n/k22Qwnxbd9GcCIS+bNCvbKVnjxqRV+QWio=\r\n=gAgq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"7.18.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.4.2","dependencies":{"ws":">=7.4.6","tmp":"^0.2.1","jszip":"^3.6.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^9.2.2","sinon":"^10.0.0","eslint":"^7.26.0","multer":"^1.4.2","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.3.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.2.0_1653663452907_0.946709925501956","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"selenium-webdriver","version":"4.3.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.3.0","maintainers":[{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"00526ddeca3c187c8d889cd3f790926b95d5f044","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.3.0.tgz","fileCount":49,"integrity":"sha512-9XFr8w95BO7jageR61AtiB83fJNem3fdtOQcUpqIIDHWSxihomyG/yBlL1H4y/shi/dO/Ai3PJMAOG+OW3+JHw==","signatures":[{"sig":"MEYCIQCF1S9w+nlGVILphf/P2UNB8EymYmeZEflLNrPsiJR+tAIhAMifJUbONlWEbpsfQNV3qTUOjxC728fsS4dYZs5XgThS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":689141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitOmgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqczxAAjEfh6FUbCSO6dNnwAXJr/zOU3rqy0HuGCR6ZcX7/CpdTVeJ5\r\n8N+5zua0tC7IVVV3YuiP4cRx7Fe8eleCa7oA02t5NqkbtarTLMsjdZ0s3qe8\r\n7Y3V3wQHicGOBTlEdjBbw+g2WNN85qBn0eMrep/iIBbW8Y/Uguhp+5PpHxwi\r\n4atmkXgBmgYczZaRr3OsRNV2H6pFIRmDmHzS+dIvfZkZ7JM/2kweYXHDdBGz\r\nHZjyQwZB9eW0pVmTPlJPdELx/Fg0pV30NfziZV1kO0CnRbShY6nhXH12H/YL\r\nqRA/iRuIv+q7pWcg/7YmMCHIFcVNUWnXVqwfHDKfBnEDzynk+9B9LTExvT7u\r\n0/J03DNAPWEx7KWuUqbrG3oprG5WUNst4o7f9mSXgNtlUkphnXyIOlz6iK2j\r\n5jsUashCwFNle+DM6tAlQfFFsxWxTBqg8zmT1Ryyiee3qFVTfEMFvsGITvnj\r\nlJLxhl9BKI4Z0cJiyWUSQDaGv2K1dl6Xc1XvAH5Jvgm1dYmbarDjQJcCfzEk\r\nVDef+zKwbLNsPigaTzZN2JFpd1ZXiuMDbuiuduGnD5n84FNJFtE+CengzCoF\r\nQnVjUTBuk2GZgXfxmH4tyRPCcdR2b1tVToJivK5bs1aAr7VPOrHXByiQF2RO\r\n2V++PSNf6K7Y16ECi7RQV/J3ri+PznboWXs=\r\n=TfkF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"7.18.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.4.2","dependencies":{"ws":">=8.7.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","sinon":"^10.0.0","eslint":"^8.16.0","multer":"^1.4.5-lts.1","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.6.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.3.0_1656023455750_0.46536439111481576","host":"s3://npm-registry-packages"}},"4.3.1":{"name":"selenium-webdriver","version":"4.3.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.3.1","maintainers":[{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"5e9c6c4adee65e57776b5bd4c07c59b65b8f056d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.3.1.tgz","fileCount":49,"integrity":"sha512-TjH/ls1WKRQoFEHcqtn6UtwcLnA3yvx08v9cSSFYvyhp8hJWRtbe9ae2I8uXPisEZ2EaGKKoxBZ4EHv0BJM15g==","signatures":[{"sig":"MEYCIQDOItODG2uo9W1OJKcnvjLJrMMIcDjv7Ak31u+0h1BT6gIhAIjYPbNlPi5seRUsm1IlFogLp3JRlgSehWvEOixchiQe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":687691,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixrgKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqNfA/+JjviasfLt8YsxQntExZmXia5YiNw2YpbtPEq1RTlCM+A0qDp\r\nf8U/GdCL1llsDFKwHo/l7m+zd2fCfMoEyhY3/CfNNIErdMuoHwex+QgINZdf\r\nwsvNYCaeQ6GaL4mDI141spiM/ibJ40PH+FBYwSokEc8wABQolLJQ/dPt3Tgp\r\n5VtHtEnPlMAgQLE6srtlLK4kt0DlRypf2Ax0QzMnTMBpQvgOxAJf+4NcgtRy\r\n/tyFik5pUBEeA7LX3+8r5fkk3ivrCGuoddutbs7Si7kQsWrW/rSa/36BpqOk\r\n5p25QkKXp5OGsvmmlMAJYxlWyVFbgJfxXYSE6C9S58e6GgNl/QLfgRvygCyo\r\nNiftnKf7kdialAyUjI11pCiB2FWf11+qfIFYX9vsb7kpVrBuBN82omW21Vq4\r\nFBImm406GUbkgojQrTxNZ/49xFCyyNWF91REc35yX/B7fY08gJ2WvRq9sx4d\r\nKh9/0ORb7WIz+MUSDBzI83pzZYVLUEJV1Soks9+Y16Yf/s7GumtWQGyphass\r\nTWT7o8UfNx+XfvYnJX2o+hOWJF4f4puE0a4OCS2F66/K5D6SIO2P50cQv72+\r\nuB3SvqfbuA7ShhQ/31jmEco7+5okji5zz5pBjX6uFZJOZM3keb6B/+Xdm1Ki\r\nrDKifGVE6ralAISToVjp5AJTpElyrIKC4XI=\r\n=0HdM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"7.18.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.4.2","dependencies":{"ws":">=8.7.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","sinon":"^10.0.0","eslint":"^8.16.0","multer":"^1.4.5-lts.1","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.6.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.3.1_1657190410151_0.08911473995177865","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"selenium-webdriver","version":"4.4.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.4.0","maintainers":[{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"3f280504f6c0ac64a24b176304213b5a49ec2553","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.4.0.tgz","fileCount":49,"integrity":"sha512-Du+/xfpvNi9zHAeYgXhOWN9yH0hph+cuX+hHDBr7d+SbtQVcfNJwBzLsbdHrB1Wh7MHXFuIkSG88A9TRRQUx3g==","signatures":[{"sig":"MEUCIFB6r6wY91Q7TDMpvnuK/jecorQtocJMkGcDVGXRn4PWAiEA9E+5vt7uhoWwXtOAGv2M9ITZ79PcjqxjZwZC3ODkod4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":687743,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8jaJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo13w/+N18zLewKtxSiPzHySgpnNFQzTm58ihfxnalpuPoh4FtWf5cC\r\nkihyoTq5HMPpynZyT4m3DGLwyeGro+tmnFsfvxGyKwal7YxTjlVIV+2/0gpm\r\nymFJ4qbd6CU/pA2YFNxcgK3hT4XtXm/1lpwj/4IB1IQ3zy5wmnAusaFlueYE\r\nWSo7H5EwiAaO06MrvrmgP8CCd6b+opNcwtDVh51Gz7CbckKJg3TTfn5+w3Dn\r\nTYU8N/nN2b5jUf6UD57kwGM4IqHqDAjOU3qnBiT07RweRJEQyFfbbz+hQRL5\r\nL8oKlIrEvQTM09kXEq8GCGKZA4FCXqHmKBdBqQKQRMSHPym225eQ8Qcbdw+R\r\n//mLDxvh1MnhS8wUEwP5eswNxdZGcJo/0OVM8AKZr5RQiUG9KRjCmXUeuObQ\r\nP0zzNbHlmlnrCxNip/Nkg9oE8zmcctf81gRRsVfLg0ptoAjd1rF2Czx7kSPS\r\nu82XofwWdAC8oC9cq6uOFEzNqcXad9Fn9keXyCoBuL/ozlb+RspbeOQosI22\r\nYoJFBKmmT4SH0i9d6WRqaMP9e68vCT3TL9kMOqKpAXb5hnSAZhv0wE1Y5UvE\r\n7wFT1Ykw+VHi9BNrSxQyMGOENQ0VMT4/IB6oGLwoCuWOmMUGgrYT7qYTkPaF\r\nAcYP5LQDTQKHsWNzAI7O5HstuA6ay3vb6Oc=\r\n=tcJU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 10.15.0"},"scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"7.18.1","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.4.2","dependencies":{"ws":">=8.7.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","sinon":"^10.0.0","eslint":"^8.16.0","multer":"^1.4.5-lts.1","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.6.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.4.0_1660040840847_0.993270656474335","host":"s3://npm-registry-packages"}},"4.5.0":{"name":"selenium-webdriver","version":"4.5.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.5.0","maintainers":[{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"7e20d0fc038177970dad81159950c12f7411ac0d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.5.0.tgz","fileCount":52,"integrity":"sha512-9mSFii+lRwcnT2KUAB1kqvx6+mMiiQHH60Y0VUtr3kxxi3oZ3CV3B8e2nuJ7T4SPb+Q6VA0swswe7rYpez07Bg==","signatures":[{"sig":"MEUCIEBF0WBpzxZwA47Zur5TXM4p/INCU+BVjksCJdH4p5q2AiEA6v0SmSRcLNtN2MgITr3e22b8tJmNRxcrIeFcTfxB9Js=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":705067,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNKnLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUWw//UEEilIC4k0zH+2el8O6mKmDf/ugGx+JqMWZDJ1pGyJSMZVDx\r\nyojOAleLT/hGXL+AOclFyqL7La2QK7uZ0fv9sHbXDJT/Yf20Bc6RYuVfIISZ\r\nvzWaw2gq4a3a4pRJKiNdD9r2Bt5b9+2pLsMrkjZ9r1acfN14vMeh5MR9ms21\r\np7n5jX5RgTrv0BNJ/+empDpVghyCyPnoYaphpslkztscTedTtca8Y7Dx9IvV\r\nzq/8Ec3mzUDTflqU3Bhnuen74YXj0/ZzjPCdAXE582iDPHDYLX5c3/nil5zG\r\nql7bK72IJ4ByrU90xwig8H0ZvzX8sVIV229TpB+zy4umto199ixyDTV8GjAh\r\nGFR8Gshm3wDRIygNVkE2TFiBSis3VsSip/NuOfpNxSrcy97nlkHYWz7Mr3pf\r\nIy7IwbNkujcrkEyM6ObFwCNOARAZZK4rBsd+ohrdU1erlUKcg8A4fgq+8HMK\r\nApjHp6vuoNHnPIuicVspE/R6Y+kKMrpdowh5zI2/WNDtbJlo+li9iuv5PDqj\r\nQJi3w+A3uDKCKcVouoCEqcyoZvjQ0k2t5kU8ZqltSyZB5nco8Y2hEKBChyI/\r\n0SBG02EYg4LHo7ftYOTaRSg+Jf1u8xHmEN5jcMQdY5vKRzv63E92QUYhlaS1\r\nyOKS4CaoaVBbQY8VzWirIxvZRaoH5HUyUtY=\r\n=RUzt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"fe167b119aaa337a2a75f70e2ad262900bb0fe4f","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.15.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.17.1","dependencies":{"ws":">=8.7.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","sinon":"^10.0.0","eslint":"^8.16.0","multer":"^1.4.5-lts.1","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.6.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.5.0_1664395722992_0.6994568156346401","host":"s3://npm-registry-packages"}},"4.6.0":{"name":"selenium-webdriver","version":"4.6.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.6.0","maintainers":[{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"b4e27959e94618b398358b26efe2e64debb22dfd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.6.0.tgz","fileCount":56,"integrity":"sha512-HIH/+J+V7l/lbSRSOwyLcpjezg9CV4DLo1pBhP9aphuMlf/PJXEDwC/A/Ht2bFc1AqQppFBGvClYcuMzyO6tRw==","signatures":[{"sig":"MEQCICQUt5zgDW1eovpsIF8KquyczCwYHv+gOrs28k7IiyZGAiBK7igMWe2nnIVeWziL7G6hkK3qqPWKlRBflLjbMMP3ew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9916485,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjZOwGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFBRAAiwvs5sTUNMXFxEwwvplWrSUntilzhhPqFjV3eu1p2x5vqgIz\r\nV//1Wrw93MQ8XX8k/C9BQeoD+5tX4Lo3WNMciVMojsJJ/MbTS3Fk/8LYtkJI\r\n9FW4cxuCYkQQxe+XkVpTVK/uxmvwQcGD1rC7gwLJ6KA2vx5I4UEgGWzqySbv\r\nkg0MtzHAxUKg0oGoP7Jibxwftx3u8UMDE2F0pBaFV/canMOKmHb4vk34JQl5\r\nh0KhtzFrdIBhTyKk1L4RfTgpskK4C9X7xsTmBOXI61kVA5LQmNUz123uhR77\r\nvorkfMVz0n00BZAKL5ZWNTOJVUhm++YrlF1Br7Mac1mWL2hDYDxO1QT/mmop\r\nfkMZnVG/t5W8tGv+O+vdKS0xh3nvIC2Fxl0QKmaRvIXWoieNdSgXKFW+QkMH\r\nZwCD7ZR3IVNR3OeHqebtla0z7+iD7QdyjELNML+GWH4ICT/lnAsZ5wGVfGlp\r\nm6lEAlp65BlZjbREwIjpMQBRnrg76aExAnYe5PwXfacQE5POpdttC218thwk\r\nRNoLyjMwkjjohlFNiM4D9XaJC1o+4oSBxpHe8hQfc5XNFIA7G1IGfI7/p56D\r\n3Yd8+ASFOAWsahRWUeNZFc5fWIoUygZKfH58ipZYZ7PUk83PIkBxXyn1nl4A\r\nCNrzvaOu/OLXwc/Nu7Ypai3A7expESY4Pfw=\r\n=0QvV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"79f1c02ae20c359daa5652d790894d5e4e24d93f","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.7.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","sinon":"^10.0.0","eslint":"^8.16.0","multer":"^1.4.5-lts.1","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.6.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.6.0_1667558406614_0.008289378057312558","host":"s3://npm-registry-packages"}},"4.6.1":{"name":"selenium-webdriver","version":"4.6.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.6.1","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"ac66867206542a40c24b5a44f4ccbae992e962dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.6.1.tgz","fileCount":56,"integrity":"sha512-FT8Dw0tbzaTp8YYLuwhaCnve/nw03HKrOJrA3aUmTKmxaIFSP4kT2R5fN3K0RpV5kbR0ZnM4FGVI2vANBvekaA==","signatures":[{"sig":"MEYCIQDGqfPDvYw6UKiAbLUmFvcFEJSQarQvl/18Hd393kQLPAIhAJEuGnv06tj8EsJfXKFPokrK/ZZQvE1vdST+4PgVKxfd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9916785,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjc4aiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpzeQ//bFA7wrA5MNQrHcmSMFJznuv/nyW9ng1CQAJYYw4uJIZiHLyj\r\nZunnY6EYDw/DSha9yMlpCYqYgmpB6vyl9qLh+E9eZBt4QcvkGoqRrfshOjKi\r\nEVdRjZ1yKzulOvKMeQVSQq/6NzeZuPKbc2m8e7EF4DjxguKiFyTFJPBkx12Y\r\nTDINc6FEkY4ySvALnT8Owa4ZQhzc5cURmXcMxW5+3C4GvdW0ABfyhHqW/PAC\r\nHe+ZTWAux8rEwy+oEh4cpNXLWQhskKGJzXjNw3tN6rpjeB/Cxu/auGSr6KSi\r\nycgRra77w2niCMTxZqGLpyiuY5gco2HRWaINXH/c2Ouhy9CAIxCPZJ2vacZZ\r\nWkn8gKBHRC5Ni0c30skIy+Oy+Br4eCcNzMpeEkc1lfSOq2Wn0X+tgf4Q0fTO\r\nep8nxk7S9ux/wSUBuz9XzMxMsYlDixem8gcOYLCg1g+p/b9MnuRFIaYmfxIK\r\nyrk2iBOzyrszxWebkxRMj8I1W8qPhw76yBoADSNPqzPFBE3lPQ6B6EhJ+Gtb\r\ncKN1QsgFxyM7o5G9M0DovqiG46gtknxsvzNaDKqcmHQwfiA/7OS8aKBOE4JY\r\nolmTpUEhyv7U+uRBze6Dlcs0Ud49U296ACYflsrwd5LSEUfCECL6rtqDXDOR\r\nCm8T8N/dCwSA2+4hiUb1+D1f9Nurqt52Keo=\r\n=X3zK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"7fdaf217b8e58033b7cd01d916e3063c8198a403","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"puja.jagani93@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.15.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"16.17.1","dependencies":{"ws":">=8.7.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","sinon":"^10.0.0","eslint":"^8.16.0","multer":"^1.4.5-lts.1","express":"^4.17.1","jasmine":"^3.8.0","prettier":"^2.6.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","eslint-plugin-no-only-tests":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.6.1_1668515489724_0.4552894458142842","host":"s3://npm-registry-packages"}},"4.7.0":{"name":"selenium-webdriver","version":"4.7.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.7.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"20be2021f1c5c4d6fc7cab8e2fa552b2e0779912","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.7.0.tgz","fileCount":56,"integrity":"sha512-ZB/77G6xKz96beiUIq6RSdU/Klccg8Fg6lGvEmsVSeLwOWjmJDRehBeXE/y59mytOqitYSewFzJsSU5Xov1X+Q==","signatures":[{"sig":"MEUCIE/RQmLBXxqonAV9a+O7S5NYNV+zJ526aiGNxxxV0co7AiEA1QKjrwwh4lRiG2EhQ+Q8EBz17zhQwLdchfEbABYGJAw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11740913,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiS8FACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr1ZQ/8CwHSSBn3FIiJs9dgPRiQWbhaCi8rUyh8iT+mSLd1yFY/WvrB\r\nZ3VcxBNAm1F4qSTpeh49jIG55ynOUESDJdsSB+HCIyaqW5UNdg9nNIaLLqZ1\r\nTGw43Ed+4dBlJ3/2C6QIPa9zYX+wM6ioox5Ucjv9p/aLsNKarRannLznIivs\r\nti8lh39xczg8aOGgZi1VWiqVTpsatZg47jkxW6c2j1HqNgkTekNuDa4WQ/9a\r\nuwK8OKVTxM7QW0GqV1LoOrgiRFWwp1BJezbmfztEpQp+wbMaNnzIgAQX+dYK\r\nj+f9D8faIlEq28AIVusADcDohb7Y1qfkuvllDS+9hD/JpMvOJSAET5Rhfpkm\r\nqXJr2nKFp2DGK2tlUVFSamUdd0etlelWTdSFjzLlaLKKEFr7dOSjL9MKws/t\r\n/qleVvz81RsiEORygUYLOdTcCqa+8rDlkyBy7pqvA14Sfmev4+kT6HbmFu/3\r\nm9BWU3O/l0QDk16CnsmSrH/e+0NZgCrMifzLR4kmwcUxRqEuqvh/vQJuzB+t\r\n4M7sylcVAqO4icMoh62u/Xxr18lPnq5vD6dpMwQm27529jLyk6FBEtiHtqaX\r\nbqH8cD5ww45BaQD5QZabrxICABxfZJC0PvlBKBDbvhcDq0cVffYl/YgY+qeH\r\nEoxetXArQX0Ra9kLVjvNHMhloUHZBC/YsHQ=\r\n=pkw5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"0a5b49d16f08308454f0f9204985b84ec5a13918","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.7.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.1.0","sinon":"^14.0.2","eslint":"^8.27.0","multer":"^1.4.5-lts.1","express":"^4.18.2","jasmine":"^4.5.0","prettier":"^2.7.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.7.0_1669934852988_0.23590596665406927","host":"s3://npm-registry-packages"}},"4.7.1":{"name":"selenium-webdriver","version":"4.7.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.7.1","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"29be9eaac1bd5aa37728c3e5cca352b1e98ec85d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.7.1.tgz","fileCount":57,"integrity":"sha512-IfTM9OE8HtCKjOJwyudbAVtAHQKOJK8mu2qrXXbKyj4lqgXF+2lYW4rSZXCV6SLQRWZ+DVGkomCmFzq5orD/ZA==","signatures":[{"sig":"MEUCIDC+XBwiBvkHx+dELa4SwEw1XVf3EV2KuNZWlu1786Y1AiEAyTGvg10KyHWnUO+4OYfcWG+U0uo97FRXEir3QEl/WYw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11744208,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmVmYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmreVw/+M5McmJK6WLqS+Qbcus3gPl71Cmj42OlDzJaf+y/435IIeGrg\r\nv8DkYHi04HDvzktGpR+MoD2Q79P2cv+BqgIk+O9iG5RQkUUfMu/Xn1cBcuay\r\nPhqSD9bJy1FY7qyPK77SGM8gZA4uA9cq4GVeP37R4SCBpqzzludJ6c9RHWaG\r\nojyW67bb6evsI0bHz0aNp/HQz/fqY6NB2e/bB4KWu0a6BD+pmDSb1/I6bCcV\r\nLYG3ilNhxu23WNG25hrm0n61nY7fzlKgcSSyws+3LKSPMjZ/SlMQysSHeqy9\r\nZNM2oe+VE7zNPHdnBCGI4I6JMl6xm8ZjLehkEAHeK6nC2ff3tQGgbBj/hyO+\r\nQlKIGgQo7fMSIkuYor6oO1zuL+V+aYxwWHdkNAVLOoQW3BL4VlRjDnTdl0P/\r\n4lXNooAuhSX9k0u2xU/+6BHgzYf/yW+5sb+XVUXpKAdV84rczQPW0aOAuG2u\r\nRm4XyG9maPSmS5OJ963dKMIZBgBt9G4DJ4yWGmiGlyZl/M8jnDaTz/qWQAQV\r\neJsR4benGz6I3XFykjjXoeRf33HyNG1gbof2XM2d6ug7M8Wx4FQJ3qcZh1XJ\r\nCxbyxIAbbd4d+BUfU1L4lEQtYaQMydrLISez3LWnjAMfNiqaaeOxn2iOW6k2\r\n5Dik4RoYNx4jDHCr3i/4NoM2ecYiXPkwXd8=\r\n=50Wc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"a379331ad6c9ece40d2ad7ec5982e8e0ac819cfd","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"jasmine JASMINE_CONFIG_PATH=jasmine.json"},"_npmUser":{"name":"anonymous","email":"sri_harsha509@hotmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.7.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.1.0","sinon":"^14.0.2","eslint":"^8.27.0","multer":"^1.4.5-lts.1","express":"^4.18.2","jasmine":"^4.5.0","prettier":"^2.7.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.7.1_1670994327652_0.4213992572108287","host":"s3://npm-registry-packages"}},"4.8.0":{"name":"selenium-webdriver","version":"4.8.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.8.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"386d57f23fe8edf5178f5bd06aae9ffaffbcb692","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.8.0.tgz","fileCount":62,"integrity":"sha512-s/HL8WNwy1ggHR244+tAhjhyKMJnZLt1HKJ6Gn7nQgVjB/ybDF+46Uui0qI2J7AjPNJzlUmTncdC/jg/kKkn0A==","signatures":[{"sig":"MEUCIQCPbPwC4BUE+eb5zTDMCYtEXqaQ9ATWymuyB7vpttegfgIgZtjClvbcp4KO+s2VFG64/82zr9jXAX1DniiHKzIKSZ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11767304,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzoXRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqM9w/+OFDrtLu8G4wuts0Z3ZsWWilCb/MZE0FIMbBvFRuxF1/eOX+0\r\ni9Tlx5GrA9Xj9j8iAQnMtKA9KHFD1lFYGM5pED7elnW1PnSSDtxL6cNmYXc3\r\ntEu7/ZEz9eTFekJJzweS8KLqqziuS7doAhA0sx8veFac3Gjfb8yuhYZRY2yJ\r\nxWx8z2cm42bLgv9aBJbEdbDepaleT8bfG205kJtgLb0+yLSlSSjZI65+Sf23\r\nY6NIe720HUF7k+IOUeOcRzrM1HbDfB7TFg1KwzWPJZfbtxRlKlFTBnffJAWx\r\nFDxbIB6ycHxpu4Cb56An6TDpL8z4tY2JfVe5rxe+Re2b46uf6EV2vK+NSSXc\r\nf3UOOU8N9tbqkX+AprECOsYJrzGf4dGaDhpnEY+EYL1fKlRc6aWHAw/7ws1t\r\n1Et59Kr/vQxO4YEnOJWOMMaKUPcwCbN2KVaUysQQmTE9Fm3HXUMKygtJ6Drs\r\nqSny4/V47NLnyYAjUxonYNm92JGLEaqtXPoCrd6pLhyFn0AIn9/ydZJrbwZY\r\n4THD/wPZFEkzT/OiCGH/ADpAOJfZJjwopGO9guXD1RZgACgrvM7ZPQO4H7EJ\r\n/i/E26ejSGQghU6QdmrGtybusZSGZU5fg+Rn9nRsrc+BADKs8Q7p0vB+ktN6\r\nVKb1O1F71Gb1hxRJQ1+9Kg7dsKuy8IyMPk8=\r\n=qJBq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"267030adeabce01e662cc69342b76f1811c35ee7","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.11.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^14.0.2","eslint":"^8.31.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^2.7.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.6.0","eslint-plugin-prettier":"^4.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.8.0_1674479057478_0.34231330956055506","host":"s3://npm-registry-packages"}},"4.8.1":{"name":"selenium-webdriver","version":"4.8.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.8.1","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"4b0a546c4ea747c44e9688c108f7a46b8d8244ab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.8.1.tgz","fileCount":63,"integrity":"sha512-p4MtfhCQdcV6xxkS7eI0tQN6+WNReRULLCAuT4RDGkrjfObBNXMJ3WT8XdK+aXTr5nnBKuh+PxIevM0EjJgkxA==","signatures":[{"sig":"MEYCIQDjo+NyWBbLY5xWnpaFlpRAObU/PIoQznX1cc7Kbxkh0QIhAOU2clvGZlreZcUZZ3iSaAul3yV30ygXJSmBvZL9uF3q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13212066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj77RPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp0fQ/+O0ra84Ka7XOkInoGHiRtXWEQKkOjxN6y/bhThN06Nue/P197\r\n0s5iiluCbPxhIYH7z3xqFn4+cRJI6pkEiBKOPhk5au5VOpKj8Cc6iNbA9iXI\r\nLLpHhCufxRRfsyVE99R9sMV4biVSwdXy2Fx83iFs0CLRaC48AlE5K3OwYhVq\r\nqKtEKOCCB9N8wPYravjjCYtDsRrEwcP/vc84GuN9WG1EekKv3k4Hfv1tqqVX\r\nQ9R2sIQ43r3FTwgq7wWZf0DCbAHB9jpSfQlkHgq6KyuNTIzWg8GoMlvi+wcf\r\nQeaiViFKqK1EeXw9VvWJ38xaBCHwgeIk/9GjRFh7niidSyWvp1W36X8MYdgH\r\nxGISsUvbrBu4BxHct4Q9O5UmSNtzQ7Qha6hmNn5+SaCJOYjRdKScYFZw3Mx8\r\nQNlNPi7TW717oKUt3hCDSjQJbBBUwVm2r37m1BM7gkpdoVZaHZR4Oo/a9ZnC\r\n2HR0dJgUNt+erQHOWHr9SqtNY/J6P+gDVJguI28MlIF3VjYrDeG0o47uPmwr\r\n38wdLbxm+3+LKGGgUa6m8aYc7HJ5JwExsepmt7+e3FjeVhEwsjOnK2UB8Ilg\r\nC38NkmbAhkL7mEAy/9CnvOxunj8a44mV4p4jo/GAcW3PlUiC8p/BG58F3KJp\r\n6lKLDBRxtuWFXs0Q+U/kSOWGMigqJVqRwY4=\r\n=/2AB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"8ebccac989e4feb7c9e940a610b5cc5e81254d34","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.11.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^14.0.2","eslint":"^8.31.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^2.7.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.6.0","eslint-plugin-prettier":"^4.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.8.1_1676653647548_0.08309780228822494","host":"s3://npm-registry-packages"}},"4.8.2":{"name":"selenium-webdriver","version":"4.8.2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.8.2","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"2e7cb452133f7a6859879575852ef29f0ab4668c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.8.2.tgz","fileCount":63,"integrity":"sha512-d2dcpDLPcXlBy5qcPtB1B8RYTtj1N+JiHQLViFx3OP+i5hqkAuqTfJEYUh4qNX11S4NvbxjteiwN3OPwK3vPVw==","signatures":[{"sig":"MEUCIQCOyy5BP5SMS6qpFFeLfzU3mPjmza7zfcWyMbfF88mHfgIgAyKvYUvjdy4eAwSoYuwpysqz18Cj86sSvKt3/Lfzr3s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12295577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkHehVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpn6Q/9H45JGhWmJZ7ijVQrvj3Ou7fOBvNfqF4MmqDzIJEI1J3/hXJU\r\nYp/wW+IiYlccWKQoEiLVRb/4pmaPDLlLzunv5Ikx9Lkn4xV1El9U9OevhF4n\r\nQ/7kxif6GZVwEnObxPZ/VjWqkCiTMu++Z6G+Pz1/1q93WwntwH3b/efRGAu2\r\nvBN4mN5iQztuqznRyhoxmteitQuXxzR8Cgg+4HX8bnYdN5yVPKutfObe3J1X\r\nPhCvKogVUqF6kqoWuyO1WLty9iL/SmYqKcpdofr8qyWjb0byE/YjWSElRtP/\r\n3hpDWi/FEhWaqH+Yn8w6fVkyyXqO2ChwIDdik/fXKjD6sIHFU2tbNTBCjakJ\r\n2VSQaXVUdoWuXva78UinU+WPbefZRGK/+UQWdfTzCNOPXmDPqi1mAXlUh3dG\r\nyGZLs9J3UK6XM/0FkmHhAM+2leaxbl/ilNrezTP9DjFmiFEhhMqBqWrBwW1N\r\nmGvQmtL/7p1fPAvFmq2cv5TeSovfaAzspHVk/cAoX2JMwu+//uTQgGKhYuaP\r\nQSFrvWrAUkJiaYgi5YFICeyCAwJQ2HZrq8YQ/Hbne1mjesZ2Rz6H0daqGDXg\r\nSVM4NZVfiLpASJSmCY5Mft6lRdgG7OxdLGnBolI+mHmHs3JIEPdxwGlwmDf0\r\ndnV58Mz/mgAdXaS1kiJeHs1uz1YSKYJFd+g=\r\n=EiWc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"1069632233263f18e56fc332ba6838c137f128b1","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.11.0","tmp":"^0.2.1","jszip":"^3.10.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^14.0.2","eslint":"^8.31.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^2.7.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.6.0","eslint-plugin-prettier":"^4.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.8.2_1679681620726_0.9647981672043733","host":"s3://npm-registry-packages"}},"4.9.0":{"name":"selenium-webdriver","version":"4.9.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.9.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"21a33a2ac547c5b79785e93c2d566da8f4461121","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.9.0.tgz","fileCount":71,"integrity":"sha512-QGaPoREo7sgOVhTiAvCasoi1f4ruTaJDtp0RKNFIbfyns5smK5+iCwnRTIPXb0R3CAYdaqUXd6BHduh37DorzQ==","signatures":[{"sig":"MEQCIBYVQJG3/wzuRFEKI3s8yl7+OwEQ1Tv88Y5YuC3MrGF8AiBgCdF6FRN7nHm6lqMxJg347bS/+WvCn228axbcdpyAKQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12343378,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQdVJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpf7RAAjbp3jE7lwKrLtLsLZICmUMLv5kpV5SxFfZMdW3KvHPjnjy2y\r\n8hVyOVFSoo/Yht8s/jd8ASlZ+2xLGVIeIPwC3SskdwshjkvyV1ERgT57qGas\r\n1LyNdHqOrTgA6KWozMP9urPGWuQjhT0GYvjnmScX3eehH6bK+SJZLjricO2z\r\nVz0N8g/SrCsGBYe3GGeEnfq+Dtu/RZl+ZSKtpV6Un4va8hePXO3q4si235i1\r\nPKIPeWA27GrC2PI7MV5PydTHug8qMTO7pvpagyuSZWLBeSJMNW2xX0E2E8UA\r\njpX+DH66FsrzHgyf+k9XB18M8mHAI8P3DZIoHwvxWjT6ZVLrNUYpZ0GU6lDp\r\nTZb7G+FrKcsmjemgThl+PjK5zZksmCoDzZicnYSnDupNPVDMZOrKGQhkZBTW\r\n4on/wOJ3l+R9BmfFnDKuSPd3pyUoxBxGaKMp0blXjTzXrMRUCt6BjXwdV1SY\r\ns2Bh/hHbJ5GiJEPnF5jyStRBF9H7A7QOrChlCzaZ8eknAcsK0k81PbF5mR+s\r\ndxjytOzRCQuwytob6EWiqwpL2LO0nz/ju0PAir9dD7Na3PXill6UBGFOc5/D\r\nGt4bb8A1ZP3nLMU/T5VFwysvjy5iZnMtneNkSi4Q94ImqgPbzyn2S0PENpZm\r\nuD47chZ2JEFX5IC3fRlxsYioEnbGShn6Oh0=\r\n=AV1w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"d7057100a684113afdab046279c8d820eff43c50","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.13.0","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^15.0.3","eslint":"^8.37.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^2.8.7","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.8.0","eslint-plugin-prettier":"^4.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.9.0_1682036041200_0.5747841191015479","host":"s3://npm-registry-packages"}},"4.9.1":{"name":"selenium-webdriver","version":"4.9.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.9.1","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"24c4055258b8be50792186fe52b60cd00f768481","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.9.1.tgz","fileCount":73,"integrity":"sha512-6OBMaSXwn3/vzQJkfYpAjGaYAA+otsE7zu0omz74HQ9XBuAMUImdVS6hKXlB2G3Bt9WIuVfK0F4V8oye8JRc3Q==","signatures":[{"sig":"MEUCIHGzdp/jk7vL9WcsyaPweyb58XNpoBUDNPz4ASkbL8MXAiEAsGkBi2+CJa67UvWQgJvBNloTYzUIVGlvbFlNiFfCmOY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12347557},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"eb2032df7f39fafea99315940e2f19355ee1dd95","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.13.0","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^15.0.3","eslint":"^8.37.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^2.8.7","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.8.0","eslint-plugin-prettier":"^4.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.9.1_1683545977150_0.5961307283877053","host":"s3://npm-registry-packages"}},"4.9.2":{"name":"selenium-webdriver","version":"4.9.2","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.9.2","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"81a9f3840a5d5dfcb2681418b8592979230900ad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.9.2.tgz","fileCount":73,"integrity":"sha512-0gDswAgVn6qbCYckZetQQvQK9tWW1r7LaumhiqY1/Wl/7JEWG0JANsTbZKnmGc3+cUU76zAi5/p0P8LUweXlig==","signatures":[{"sig":"MEUCIArJNrHaJVPbY0XmXf8shfdX1oRJ92U2JLUrYKnarS2KAiEAo7mMPtF1Q54h5SzrxasVZa9y6wxJ/88mOR33jr5wJOk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12347704},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"8e0c968e3866151d3797a73aaae9ead4c421d69e","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.13.0","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^15.0.3","eslint":"^8.37.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^2.8.7","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.8.0","eslint-plugin-prettier":"^4.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.9.2_1683792819028_0.9016283976271489","host":"s3://npm-registry-packages"}},"4.10.0":{"name":"selenium-webdriver","version":"4.10.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.10.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"0508cdfbb5ad8470d8fd19db1a69d3e87f474b79","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.10.0.tgz","fileCount":73,"integrity":"sha512-hSQPw6jgc+ej/UEcdQPG/iBwwMeCEgZr9HByY/J8ToyXztEqXzU9aLsIyrlj1BywBcStO4JQK/zMUWWrV8+riA==","signatures":[{"sig":"MEUCIQCEWWt4N6tJRLLnJQnYFYpQPVQ21iSF6iglQoa7DgwJkQIgacMriiP5eOzvTXdDk2ulSVeaMjtSSsIll75BjDBGk8k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12221016},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"c14d9678990942b93cb421c5567d0da7fb29c7bd","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.13.0","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^15.1.0","eslint":"^8.41.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^2.8.8","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.8.0","eslint-plugin-prettier":"^4.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.10.0_1686154655928_0.1385260797196448","host":"s3://npm-registry-packages"}},"4.11.0":{"name":"selenium-webdriver","version":"4.11.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.11.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"12861e762cbaafe8bd5eec228f00b90256e63f30","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.11.0.tgz","fileCount":75,"integrity":"sha512-0d/Iys9IroN48BC437/8bSd92lYm0eOJJBN5/fBobKvzVEfQpvVoSnV0NDkUciq2Ek4dLnoVqdT+Q0fzdMi6UA==","signatures":[{"sig":"MEQCIGBwCexAl1HU6RturbuKtxNws/jgUcz+6sGsa8b1D+/YAiAK3auAMohxQ1dj+zVY/VmgT7kGHMggOpQBvFYXq9OeDA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13436561},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"040bc5406b3535e4087638b4a20b6d0544224639","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.13.0","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^15.2.0","eslint":"^8.44.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.8.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.11.0_1690832850428_0.3157454933172632","host":"s3://npm-registry-packages"}},"4.11.1":{"name":"selenium-webdriver","version":"4.11.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.11.1","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"6a84f68d06199d075e6c2a5448bf08f4249b98c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.11.1.tgz","fileCount":75,"integrity":"sha512-bvrnr3UZlLScErOmn8gV6cqc+1PYDHn0575CxUR2U14fMWt7OKxSy0lAThhZq4sq4d1HqP8ebz11oiHSlAQ2WA==","signatures":[{"sig":"MEYCIQCVN4nE0T6JEWVqy41QX7OAceCqh+jw7sidFJfmDFFRaAIhAOFmZ5OCOzuvzmYoF001bvd99UG8jCrSfIGpJWMQno8s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13436692},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"00b6089b93a81e32e1dc754bc2753e9fce9d821c","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"sri_harsha509@hotmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.13.0","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^15.2.0","eslint":"^8.44.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.0","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^8.8.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.11.1_1690865095210_0.8922820930795641","host":"s3://npm-registry-packages"}},"4.12.0":{"name":"selenium-webdriver","version":"4.12.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.12.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"a8dc8ecf129a2414c2ace6e429aba84722a950a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.12.0.tgz","fileCount":75,"integrity":"sha512-zvPzmTsky6WfO6+BGMj2mCJsw7qKnfQONur2b+pGn8jeTiC+WAUOthZOnaK+HkX5wiU6L4uoMF+JIcOVstp25A==","signatures":[{"sig":"MEUCIFanKfybvX5B9Wz57Q6gXVse/UuiurtabEdBR5JxnCCiAiEAkMWxMhMBYkVNnz1OpgKihBX/uOR77c8Q5Qmm1TPnKPk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17149838},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"249f2a7d1bbe1aa972006f15088e7b7db000df94","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.13.0","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^15.2.0","eslint":"^8.46.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.12.0_1693511605092_0.18856155395922158","host":"s3://npm-registry-packages"}},"4.13.0":{"name":"selenium-webdriver","version":"4.13.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.13.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"1e06bab7adedb308e3635131bc75bd32038261d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.13.0.tgz","fileCount":75,"integrity":"sha512-8JS0h5E0Sq7gNfbGg8LVaQ+Eqek97tvOONn3Jmy+NiWfb12WYpftz4VTC4D2JT4wakdG6VUzGKpA8cFGg0IjkA==","signatures":[{"sig":"MEUCIEztnGJEW/Kl1O5omXQHL30wC6q7X7AKFPax5MOfcC2hAiEAwUXkjes3T99qqt6an4ptRTTelXqttLydExAHaWGGIiY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17649725},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"66b3a2ade201458b21fa71f92f137417b81faade","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.13.0","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^15.2.0","eslint":"^8.46.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.1","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.13.0_1695669015360_0.25930814362532884","host":"s3://npm-registry-packages"}},"4.14.0":{"name":"selenium-webdriver","version":"4.14.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.14.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d39917cd7c1bb30f753c1f668158f37d1905fafc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.14.0.tgz","fileCount":75,"integrity":"sha512-637rs8anqMKHbWxcBZpyG3Gcs+rBUtAUiqk0O/knUqH4Paj3MFUZrz88/pVGOLNryEVy2z92fZomT8p1ENl1gA==","signatures":[{"sig":"MEYCIQCfzbb5IMBt80xstLHzusjYJdJtCkkw+pfz1QIZKbVo3AIhAJk2Mrn9E8A7hZh5jueGDJMlSdWgXCxsoobjO20kpFe3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18481998},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"e5a96349cea553359d2ad38d0e85c2b1f9928265","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.14.2","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^16.1.0","eslint":"^8.50.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.3","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.14.0_1696908324193_0.2688769437385401","host":"s3://npm-registry-packages"}},"4.15.0":{"name":"selenium-webdriver","version":"4.15.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.15.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"ee827f8993864dc0821df0d3b46d4f312d6f1aa3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.15.0.tgz","fileCount":75,"integrity":"sha512-BNG1bq+KWiBGHcJ/wULi0eKY0yaDqFIbEmtbsYJmfaEghdCkXBsx1akgOorhNwjBipOr0uwpvNXqT6/nzl+zjg==","signatures":[{"sig":"MEQCIHWeWiwOC1xfuzbBz7jcljBiJ2f30/CifkR8jniDTD8AAiBKCHrnmy8Niia+QQXnVZ2IJtqWPBHKDTC7lFnO2di0SQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19107265},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"1d14b5521bae241b099f6b0e008fcc9866e842ab","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.14.2","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^16.1.0","eslint":"^8.50.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.3","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.15.0_1698848192687_0.6238636811729839","host":"s3://npm-registry-packages"}},"4.16.0":{"name":"selenium-webdriver","version":"4.16.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.16.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"2f1a2426d876aa389d1c937b00f034c2c7808360","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.16.0.tgz","fileCount":75,"integrity":"sha512-IbqpRpfGE7JDGgXHJeWuCqT/tUqnLvZ14csSwt+S8o4nJo3RtQoE9VR4jB47tP/A8ArkYsh/THuMY6kyRP6kuA==","signatures":[{"sig":"MEUCIQCwHPwJ2iKPT5FNDd/q0vqUzvz6qLjSszfLreWGt0yrYQIgTmXbPU4wF+FF6kKANUHgR7TxMUDXep7mBOgMyDKS120=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18606324},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"15400459ddea077b868f696980367ee7ca0d91bd","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"puja.jagani93@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"8.19.2","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.12.0","dependencies":{"ws":">=8.14.2","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^16.1.0","eslint":"^8.50.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.3","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.16.0_1701854843278_0.6628402143091148","host":"s3://npm-registry-packages"}},"4.17.0":{"name":"selenium-webdriver","version":"4.17.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.17.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"f6c93a9df3e0543df7dc2329d81968af42845a7f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.17.0.tgz","fileCount":76,"integrity":"sha512-e2E+2XBlGepzwgFbyQfSwo9Cbj6G5fFfs9MzAS00nC99EewmcS2rwn2MwtgfP7I5p1e7DYv4HQJXtWedsu6DvA==","signatures":[{"sig":"MEUCIQDZifphHQHN/mCvZrP/EwXink6VEH37DJZzZ5NyL4qFVAIgM86WeEBzqNEW9j5BS4tXzykNL+2KGaATqpgZNGJCyfg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18493661},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"e52b1be0574650813bf0985a7ddaa27500839ab6","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"9.6.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.17.0","dependencies":{"ws":">=8.14.2","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^16.1.0","eslint":"^8.50.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.3","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.17.0_1705990455174_0.13490865805070196","host":"s3://npm-registry-packages"}},"4.18.0":{"name":"selenium-webdriver","version":"4.18.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.18.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"dab88fe0b3337872b622b9062376d83664013f04","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.18.0.tgz","fileCount":80,"integrity":"sha512-EZquOcfqnIf0T90ge89tgJ6RPFXC/6PZmDB4HqjEYSshI8wL2kDkipq1C6BcOYY5moDIksNPyNd1zqCgFKVUvg==","signatures":[{"sig":"MEUCIADU/9bz10ZHmCE5LJIa8em8nmalVsSTEQIn1gMQBh/cAiEAo2ry68ozT1WtPar/CLUIs+bv0AXttwhkNfjG9odSCyg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18748521},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"b6bf9de7cc2a492a8d1d26e418005996075c698f","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","lint:fix":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\" --fix","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"9.6.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.17.0","dependencies":{"ws":">=8.14.2","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^16.1.0","eslint":"^8.50.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.3","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.18.0_1708354345284_0.3171696270526301","host":"s3://npm-registry-packages"}},"4.18.1":{"name":"selenium-webdriver","version":"4.18.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.18.1","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"bcd19048b4aba5411edb7b5266d9390578fc7fed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.18.1.tgz","fileCount":80,"integrity":"sha512-uP4OJ5wR4+VjdTi5oi/k8oieV2fIhVdVuaOPrklKghgS59w7Zz3nGa5gcG73VcU9EBRv5IZEBRhPr7qFJAj5mQ==","signatures":[{"sig":"MEQCIAYRJ+ZFCve3bMl8wGrqGNHsT6SQH8qto17CcGjQ8KSFAiANA9tblQrM3GW2XV/RhrAQ9kiGdLGQCDFMJwWkTI41tA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18748573},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"b1d3319b48304bca40a8a35cdd95cb05d8464497","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","lint:fix":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\" --fix","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"9.6.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.17.0","dependencies":{"ws":">=8.14.2","tmp":"^0.2.1","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","sinon":"^16.1.0","eslint":"^8.50.0","multer":"^1.4.5-lts.1","express":"^4.18.2","prettier":"^3.0.3","serve-index":"^1.9.1","eslint-plugin-node":"^11.1.0","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.18.1_1708388099357_0.26930273069773203","host":"s3://npm-registry-packages"}},"4.19.0":{"name":"selenium-webdriver","version":"4.19.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.19.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"bdd001b6e534033664d8c1310a84c0f12eeafc67","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.19.0.tgz","fileCount":89,"integrity":"sha512-8XHW8m9V2XN2/SC1kr4bWzMtGvjmKUEZ6S0UBoDBqonhmwEIzKOLbzhanBd08HCOg1s1O0XrDWCD71NnA8Zt0g==","signatures":[{"sig":"MEUCIQDuqLcrGUW+c5WKr0Z5CPC2wFSrFoEM1kceJKotkRZKawIgc2+ULzPsQguZmcBYXOgbhVeceT2O0KwErN5+rcUbHGs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19734609},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"5f9cec8963b33a7708619d666a5ce0b2f6542c7d","scripts":{"lint":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"","test":"npm run lint && mocha -t 600000 --recursive test","lint:fix":"eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\" --fix","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"9.6.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.17.0","dependencies":{"ws":">=8.16.0","tmp":"^0.2.3","jszip":"^3.10.1"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.3.0","sinon":"^17.0.1","eslint":"^8.57.0","multer":"^1.4.5-lts.1","express":"^4.19.2","prettier":"^3.2.5","serve-index":"^1.9.1","@bazel/runfiles":"^5.8.1","eslint-plugin-node":"^11.1.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.3","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.19.0_1711551662938_0.8349699291358261","host":"s3://npm-registry-packages"}},"4.20.0":{"name":"selenium-webdriver","version":"4.20.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.20.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"14941ab4a59e8956a5e4b4491a8ba2bd6619d1ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.20.0.tgz","fileCount":93,"integrity":"sha512-s/G44lGQ1xB3tmtX6NNPomlkpL6CxLdmAvp/AGWWwi4qv5Te1+qji7tPSyr6gyuoPpdYiof1rKnWe3luy0MrYA==","signatures":[{"sig":"MEUCIDoXeblRbPq00gNOFh0J3Yb9MNE5cczJOupGJ0Cl5yQ4AiEA5tdMAAXP/lxL0u6hsTdE6IoUyqJVBerCl3z5n3LZ3/g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18304239},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.20.0"},"gitHead":"866c76ca804c82795fd86a969bc5ed402397142c","scripts":{"lint":"eslint .","test":"npm run lint && mocha -t 600000 --recursive test","lint:fix":"eslint . --fix","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"9.6.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.17.0","dependencies":{"ws":">=8.16.0","tmp":"^0.2.3","jszip":"^3.10.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.4.0","sinon":"^17.0.1","eslint":"^9.1.0","multer":"^1.4.5-lts.1","express":"^4.19.2","globals":"^15.0.0","prettier":"^3.2.5","@eslint/js":"^9.1.1","serve-index":"^1.9.1","@bazel/runfiles":"^5.8.1","eslint-plugin-n":"^17.2.1","eslint-plugin-mocha":"^10.4.3","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.3","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.20.0_1713989952907_0.28334579010694116","host":"s3://npm-registry-packages"}},"4.21.0":{"name":"selenium-webdriver","version":"4.21.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.21.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"d38aebfc34770421a880afcfdb7bd8fe85ce9174","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.21.0.tgz","fileCount":93,"integrity":"sha512-WaEJHZjOWNth1QG5FEpxpREER0qptZBMonFU6GtAqdCNLJVxbtC3E7oS/I/+Q1sf1W032Wg0Ebk+m46lANOXyQ==","signatures":[{"sig":"MEQCIDRuIbcryHjEnBN5+WVH8xgFUonnr1utYdXlO4RBx+ueAiA/O0h6NEbE1fmlKIXLQ9jN9DQ28cBXszfF72RbhLGytA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18092893},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.21.0"},"gitHead":"79ed462ef4f0af15fa7cb6c163898721c87d97a3","scripts":{"lint":"eslint .","test":"npm run lint && mocha -t 600000 --recursive test","lint:fix":"eslint . --fix","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"9.6.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.17.0","dependencies":{"ws":">=8.16.0","tmp":"^0.2.3","jszip":"^3.10.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.4.0","sinon":"^17.0.1","eslint":"^9.1.0","multer":"^1.4.5-lts.1","express":"^4.19.2","globals":"^15.0.0","prettier":"^3.2.5","@eslint/js":"^9.1.1","serve-index":"^1.9.1","@bazel/runfiles":"^5.8.1","eslint-plugin-n":"^17.2.1","eslint-plugin-mocha":"^10.4.3","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.3","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.21.0_1715857524823_0.2741339276942423","host":"s3://npm-registry-packages"}},"4.22.0":{"name":"selenium-webdriver","version":"4.22.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.22.0","homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"da9426aed5004ef16532010224b41a3a8b8dd132","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.22.0.tgz","fileCount":94,"integrity":"sha512-GNbrkCHmy249ai885wgXqTfqL2lZnclUH/P8pwTDIqzyFxU3YhDiN7p/c9tMFA4NhgRdEBO2QCG+CWmG7xr/Mw==","signatures":[{"sig":"MEYCIQCX+K9oCz5jXgSyo92J9Jel2etfMpYauzZccNzvTgNWzgIhAI0gf62QrKCKyjwILr07WP/4VSysKXDIuG3h21WRIe+g","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18015324},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.21.0"},"gitHead":"c5f314670396b04e92b32500bd6e0dfac31e841f","scripts":{"lint":"eslint .","test":"npm run lint && mocha -t 600000 --recursive test","lint:fix":"eslint . --fix","test-jasmine":"bazel test //javascript/node/selenium-webdriver:tests","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"9.6.7","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"18.17.0","dependencies":{"ws":">=8.16.0","tmp":"^0.2.3","jszip":"^3.10.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.3","mocha":"^10.4.0","sinon":"^17.0.1","eslint":"^9.1.0","multer":"^1.4.5-lts.1","express":"^4.19.2","globals":"^15.0.0","prettier":"^3.2.5","@eslint/js":"^9.1.1","serve-index":"^1.9.1","@bazel/runfiles":"^5.8.1","eslint-plugin-n":"^17.2.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.4.3","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.3","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.22.0_1718917120378_0.04775760450238553","host":"s3://npm-registry-packages"}},"4.23.0":{"name":"selenium-webdriver","version":"4.23.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.23.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"6d9d219a560dffff1fbbc0f2c8a115d81d279a21","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.23.0.tgz","fileCount":95,"integrity":"sha512-DdvtInpnMt95Td8VApvmAw7oSydBD9twIRXqoMyRoGMvL1dAnMFxdrwnW6L0d/pF/uoNTjbVUarwGZ9wIGNStA==","signatures":[{"sig":"MEYCIQCciYXsf0sTlMuf6WiJLVhrwKZGqSTlRPMKZB7Bhvc54wIhAPTFVQ99ujxqsKHYcMGCnCT5qXxp00KSG3IbiBlnT2CF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18025662},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.21.0"},"gitHead":"4df0a231af83908edb1a4304028b508f245d26a8","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"puja.jagani93@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.17.1","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^5.8.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.3","mocha":"^10.5.1","sinon":"^17.0.1","eslint":"^9.5.0","multer":"1.4.5-lts.1","express":"^4.19.2","globals":"^15.6.0","has-flag":"^4.0.0","prettier":"^3.3.2","@eslint/js":"^9.5.0","serve-index":"^1.9.1","supports-color":"^9.4.0","eslint-plugin-n":"^17.9.0","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.4.3","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.1.3","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.23.0_1721370256524_0.9911268051652811","host":"s3://npm-registry-packages"}},"4.24.0":{"name":"selenium-webdriver","version":"4.24.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.24.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"bf7563f9e0b1ef29d55f215a8fb187b21e4de26e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.24.0.tgz","fileCount":96,"integrity":"sha512-qrqoHhHPZuKLiz5VAQUxrn3ILs7/cYqn2/x96r35g5JjkLUjOS1lX+F+tEJKhRMlQ/MGJ+N1016JF5g2xZUFzw==","signatures":[{"sig":"MEYCIQDCn35+JTIXygH8C8TCsYaG/MGEB8B8dizpT14roAtJBAIhAOPYNPrh4iOVRti6gLu8S1KZ4xVk0q9Z5xEH0SAGm6dL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18192335},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.21.0"},"gitHead":"748ffc9bc3cf40211b27d1b27e238b26aae93f46","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^5.8.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.3","mocha":"^10.7.0","sinon":"^18.0.0","eslint":"^9.8.0","multer":"1.4.5-lts.1","express":"^4.19.2","globals":"^15.9.0","has-flag":"^5.0.1","prettier":"^3.3.3","@eslint/js":"^9.8.0","serve-index":"^1.9.1","supports-color":"^9.4.0","eslint-plugin-n":"^17.10.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.24.0_1724845288506_0.4572442278013764","host":"s3://npm-registry-packages"}},"4.24.1":{"name":"selenium-webdriver","version":"4.24.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.24.1","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"4315214420cc26dddaa21ae26863dd452aec2829","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.24.1.tgz","fileCount":96,"integrity":"sha512-fcK5BTI/54cSqIhiVtrd9li1YL6LW109yIwuVw6V+FlVE6y4riGiX2qdZxVzHq+sm2TJyps+D2sjzXrpDZe1Og==","signatures":[{"sig":"MEUCIG2F4Dcjl+e2s/GAyy33epi6ZE8XAlIwqOmhEDuSJ8ejAiEArIwYt74DqS+WY86cI0yiwH4DFFM7A+ozshXeGnJ341w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18192768},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.21.0"},"gitHead":"603f4a4a5944e9de8e5f8ee77ddbefc8560da6b7","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"puja.jagani93@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^5.8.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.3","mocha":"^10.7.0","sinon":"^18.0.0","eslint":"^9.8.0","multer":"1.4.5-lts.1","express":"^4.19.2","globals":"^15.9.0","has-flag":"^5.0.1","prettier":"^3.3.3","@eslint/js":"^9.8.0","serve-index":"^1.9.1","supports-color":"^9.4.0","eslint-plugin-n":"^17.10.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.24.1_1726483313947_0.71419957788091","host":"s3://npm-registry-packages"}},"4.25.0":{"name":"selenium-webdriver","version":"4.25.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.25.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"3562b49668817974bb1d13d25a50e8bc0264fcf3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.25.0.tgz","fileCount":96,"integrity":"sha512-zl9IX93caOT8wbcCpZzAkEtYa+hNgJ4C5GUN8uhpzggqRLvsg1asfKi0p1uNZC8buYVvsBZbx8S+9MjVAjs4oA==","signatures":[{"sig":"MEUCIFLWse7O9LkVL9t7nko4+Uv08lVul5wHx2Q7g1ft51lYAiEAzFC/qdCau+J9JQ9FTgIiDC93DXIBBvx2I3/RLM24fHw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18427283},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.21.0"},"gitHead":"8a8aea2337281d1824e9fa6b784fc269b59d768e","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^5.8.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.3","mocha":"^10.7.0","sinon":"^18.0.0","eslint":"^9.8.0","multer":"1.4.5-lts.1","express":"^4.19.2","globals":"^15.9.0","has-flag":"^5.0.1","prettier":"^3.3.3","@eslint/js":"^9.8.0","serve-index":"^1.9.1","supports-color":"^9.4.0","eslint-plugin-n":"^17.10.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.25.0_1726846718975_0.25019393794234057","host":"s3://npm-registry-packages"}},"4.26.0":{"name":"selenium-webdriver","version":"4.26.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.26.0","maintainers":[{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"23163cdad20388214a4ad17c1f38262a0857c902","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.26.0.tgz","fileCount":96,"integrity":"sha512-nA7jMRIPV17mJmAiTDBWN96Sy0Uxrz5CCLb7bLVV6PpL417SyBMPc2Zo/uoREc2EOHlzHwHwAlFtgmSngSY4WQ==","signatures":[{"sig":"MEYCIQCrPgwXJEz2Pn+487TCYj267pOmuoIc7zxsgOkCjBXuiQIhAK0RTe/tNfEsu3utYE6ngNLyUqrMU+DI8JlX+LlKVcQH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18346788},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.21.0"},"gitHead":"8ccf0219d77a3144923d79e76e2b8fddd85b3e8f","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^10.7.3","sinon":"^19.0.2","eslint":"^9.13.0","multer":"1.4.5-lts.1","express":"^4.21.1","globals":"^15.11.0","has-flag":"^5.0.1","prettier":"^3.3.3","@eslint/js":"^9.13.0","serve-index":"^1.9.1","supports-color":"^9.4.0","eslint-plugin-n":"^17.11.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.26.0_1730280049161_0.9111284628663787","host":"s3://npm-registry-packages"}},"4.27.0":{"name":"selenium-webdriver","version":"4.27.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.27.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"f0f26ce453805e7dc77151040442c67e441dbe7a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.27.0.tgz","fileCount":96,"integrity":"sha512-LkTJrNz5socxpPnWPODQ2bQ65eYx9JK+DQMYNihpTjMCqHwgWGYQnQTCAAche2W3ZP87alA+1zYPvgS8tHNzMQ==","signatures":[{"sig":"MEQCIG5I6EDzjgi552z2fzJqqRkLEpQ2fGKra2bbFfXQv7/mAiBu97iRlqUfbAAkklC8sErL+R9Z9zcgXKF7O6mj5flfPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18355504},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 14.21.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"d6e718d134987d62cd8ffff476821fb3ca1797c2","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^10.8.2","sinon":"^19.0.2","eslint":"^9.14.0","multer":"1.4.5-lts.1","express":"^4.21.1","globals":"^15.12.0","has-flag":"^5.0.1","prettier":"^3.3.3","@eslint/js":"^9.14.0","serve-index":"^1.9.1","supports-color":"^9.4.0","eslint-plugin-n":"^17.13.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^9.1.0","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.27.0_1732544859443_0.29712612785526904","host":"s3://npm-registry-packages"}},"4.28.0":{"name":"selenium-webdriver","version":"4.28.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.28.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"600a52e730c16847274b64ee5c548b5ae5eaa3b9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.28.0.tgz","fileCount":98,"integrity":"sha512-eZ1N0RcgPytlyuZFVAgs+nNIeceubNGGZN1GGpDLLKYf37OYEvbsGOT9mohVOWre2T4lY5X8jwC+CQcoVt2peQ==","signatures":[{"sig":"MEQCIB85CBgQfucPtnbfgLK/9JHexoPnb+U0s29f6MVFxar5AiBqIDn3k/xdcx7ggEkzVg12pYcu9oBtN+ftaWBparaNhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18073297},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 22.13.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"ac342546e9e34d4ca94eceeb27cce22a4fe3b79f","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.2","eslint":"^9.18.0","multer":"1.4.5-lts.1","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.28.0_1737393635245_0.3570305847385289","host":"s3://npm-registry-packages-npm-production"}},"4.28.1":{"name":"selenium-webdriver","version":"4.28.1","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.28.1","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"0f6cc4fbc83cee3fdf8b116257656892957b72da","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.28.1.tgz","fileCount":98,"integrity":"sha512-TwbTpu/NUQkorBODGAkGowJ8sar63bvqi66/tjqhS05rBl34HkVp8DoRg1cOv2iSnNonVSbkxazS3wjbc+NRtg==","signatures":[{"sig":"MEQCIAeij9EBGe80HcQEVvmLYs6tVo6APOZ4GiK85n1dejDyAiB9JBEKjDHQpcPFj9dXmpQHNcbzDncVv+054tv+RZ3/ng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18073395},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 18.20.5"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"05c87ca7c15eb719b2f5ca9a460ec88a38740cf6","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.2","eslint":"^9.18.0","multer":"1.4.5-lts.1","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.28.1_1737406426192_0.3766795064655384","host":"s3://npm-registry-packages-npm-production"}},"4.29.0":{"name":"selenium-webdriver","version":"4.29.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.29.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"32d32fb60df488bbc399b9dd58728a5cd570210e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.29.0.tgz","fileCount":99,"integrity":"sha512-8XPGtDoji5xk7ZUCzFT1rqHmCp67DCzESsttId7DzmrJmlTRmRLF6X918rbwclcH89amcBNM4zB3lVPj404I0g==","signatures":[{"sig":"MEQCIHpEbZ8sRpVgPn1OnYDbGacUKE0PnJGy49WXFu11MKkgAiAV5o+TI2JwIRD9ewjxsdQ9IX01yZCyKC01m+R68Ygt4Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18084294},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 18.20.5"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"5fc1ec94cb96fd7649dde127a73d335b92bf0d54","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.2","eslint":"^9.18.0","multer":"1.4.5-lts.1","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.29.0_1740050664356_0.2187934717803226","host":"s3://npm-registry-packages-npm-production"}},"4.30.0":{"name":"selenium-webdriver","version":"4.30.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.30.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"f7409ad363d64051a13159226f552af0f5a8d9ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.30.0.tgz","fileCount":100,"integrity":"sha512-3DGtQI/xyAg05SrqzzpFaXRWYL+Kku3fsikCoBaxApKzhBMUX5UiHdPb2je2qKMf2PjJiEFaj0L5xELHYRbYMA==","signatures":[{"sig":"MEUCIQDUnUSufTFcToMegFah0gi9dmztHY2LaF5zjPypribPOAIga1u5aS11hhDLK1hCAA32Tb1T7JS39XwhANYaAmsmRkg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18031613},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 18.20.5"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"509c7f17cc813e5fddebc18b1aa2d951edcdb441","scripts":{"lint":"eslint .","test":"bazel test //javascript/node/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.2","eslint":"^9.18.0","multer":"1.4.5-lts.1","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.30.0_1742592142173_0.4262734295588657","host":"s3://npm-registry-packages-npm-production"}},"4.31.0":{"name":"selenium-webdriver","version":"4.31.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.31.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"3908152b9fcccd41411a58e30a099fc05a04dd2f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.31.0.tgz","fileCount":100,"integrity":"sha512-0MWEwypM0+c1NnZ87UEMxZdwphKoaK2UJ2qXzKWrJiM0gazFjgNVimxlHTOO90G2cOhphZqwpqSCJy62NTEzyA==","signatures":[{"sig":"MEYCIQDVBioatHaRuSei/yOgIMVmD+xePsBF6VRIW/YNgydUBAIhAJgLQ+iPXgKnsykTNGhvoRnTaQB4Vdj5tYA4jCDk6yG5","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18045410},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 18.20.5"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"1ef9f187874f0943976808267310b2b75f342a80","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.2","eslint":"^9.18.0","multer":"1.4.5-lts.1","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.31.0_1743814748629_0.18505538075239847","host":"s3://npm-registry-packages-npm-production"}},"4.32.0":{"name":"selenium-webdriver","version":"4.32.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.32.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"9bfe160cdac14d2d2876bba6eb369a09e9bd13ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.32.0.tgz","fileCount":100,"integrity":"sha512-dG48JJnB96Aea1iVaZOKGmd6yT6aemeI1heWI/i8DtfD3pDX7uIlwpDBoGauNhtXAaFaamP+U4hIab8zZkg3Ag==","signatures":[{"sig":"MEQCICJSYHKO4tNJXlVSe4TRzhf5stkMEFiXLLn8/gLr6K2BAiAgQi+SzfXX1Fu7y4KZPQK7iPRI7/4AIo21qyETw0n7hQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18045429},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 18.20.5"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"d17c8aa95092dc25ae64f12e7abdc844cf3503f0","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.2","eslint":"^9.18.0","multer":"1.4.5-lts.1","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.32.0_1746218145874_0.5978640065325562","host":"s3://npm-registry-packages-npm-production"}},"4.33.0":{"name":"selenium-webdriver","version":"4.33.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.33.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"6587a9eab09bf30ad27cf27bc8d0b944457252da","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.33.0.tgz","fileCount":100,"integrity":"sha512-5vRhk4iI0B9nYbEitfnCjPDXBfG6o9DNhj5DG2355eQo8idETknhj1tigqqlkHsGephSZwLZqEm/d+3e1stGUA==","signatures":[{"sig":"MEQCIEqRzdNze8BPMxQXSO4nq6BRsAQMsVlne3T6X8v48sq3AiBMPPbqaVf/pp38U8HLvWQoi4NwrgI7LonInd1+4kMUEw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":17947950},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 18.20.5"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"2c6aaad03a575cd93e4f063f91404e3ae66a7470","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.0","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.2","eslint":"^9.18.0","multer":"1.4.5-lts.1","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.33.0_1748022211790_0.939168555782935","host":"s3://npm-registry-packages-npm-production"}},"4.34.0":{"name":"selenium-webdriver","version":"4.34.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.34.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"0081c3e51a2f1e197d56253c647f25085b22bd62","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.34.0.tgz","fileCount":100,"integrity":"sha512-zGfQFcsASAv3KrYzYh+iw4fFqB7iZAgHW7BU6rRz7isK1i1X4x3LvjmZad4bUUgHDwTnAhlqTzDh21byB+zHMg==","signatures":[{"sig":"MEYCIQDJbhOQC0pd1KZbt2ci12L+i+jceXt6N8DvhNG2M7EKOgIhAJDsiRcL+qN4D0VMfBC2pGqusKg0yx1WlX4Faxh8eB8j","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18039663},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"707dcb4246828ddf16a2b55cd53602b142080f23","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","actor":{"name":"diemol","type":"user","email":"diemol@gmail.com"},"email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.2","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.5","eslint":"^9.18.0","multer":"1.4.5-lts.2","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.34.0_1751182080926_0.447730751235772","host":"s3://npm-registry-packages-npm-production"}},"4.35.0":{"name":"selenium-webdriver","version":"4.35.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.35.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"2f769b8e0ca62817e275656a1eda5e6ea1ec4f66","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.35.0.tgz","fileCount":100,"integrity":"sha512-Baaeiuyu7BIIsSYf0SI7Mi55gsNmdI00KM0Hcofw1RnAY+0QEVpdh5yAxueDxgTZS8vcbGZFU0NJ6Qc1riIrLg==","signatures":[{"sig":"MEUCIQDVRtYNPnHeIDHAuC+yHthgpG81RXiH6EvSawPQp8ZjlwIgWUHKzkySvFr3pl0m07p3lbKivLXjCLoQD1rrhlfgSZU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18368072},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"1c58e5028bc5eaa94b12b856c2d4a87efa5363f5","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.2","tmp":"^0.2.3","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.5","eslint":"^9.18.0","multer":"1.4.5-lts.2","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.35.0_1755013525333_0.2681701406653436","host":"s3://npm-registry-packages-npm-production"}},"4.36.0":{"name":"selenium-webdriver","version":"4.36.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.36.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"71d12429d61ca56dc09e5f1895af422bc4986e9f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.36.0.tgz","fileCount":100,"integrity":"sha512-rZGqjXiqNVL6QNqKNEk5DPaIMPbvApcmAS9QsXyt5wT3sfTSHGCh4AX/YKeDTOwei1BOZDlPOKBd82WCosUt9w==","signatures":[{"sig":"MEUCIQCEZHGaoc5UC2N+Z/XxTn82mz3Bxh/tuQ7pE/Y4mSKuqAIgbkp3csN3hwSI/W1nvf/OnH64YqB5MRb+H8sxA2FQZ24=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18356182},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"6d115cfd877e1ba381c647fd08ba6450ae256624","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.3","tmp":"^0.2.5","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.5","eslint":"^9.18.0","multer":"1.4.5-lts.2","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.36.0_1759418724444_0.9005749236609648","host":"s3://npm-registry-packages-npm-production"}},"4.37.0":{"name":"selenium-webdriver","version":"4.37.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.37.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"8a3b03be12ae025d27105653646e07e45b1fa022","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.37.0.tgz","fileCount":100,"integrity":"sha512-eHwfYyudXRrMvBocqMwzvYhWWvpYuWcNXwu3IRtMZUci930zMVr6mVDCiMSDWpqBe5B+Rh/IVY7l9xoqNK8usw==","signatures":[{"sig":"MEUCIG/Q4n5PUGjB7K0c3OnaUz4CFJ4z+52UjEk83+GshCqDAiEAuqXJQZJjHEflLCwS2CiwtB58Qj6tC9nWMPQo/6B7Z6g=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18531658},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"3c1da1e3427c75d75f7db4204d893a5d7980f705","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.3","tmp":"^0.2.5","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.5","eslint":"^9.18.0","multer":"1.4.5-lts.2","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.37.0_1760735683793_0.15197179078470513","host":"s3://npm-registry-packages-npm-production"}},"4.38.0":{"name":"selenium-webdriver","version":"4.38.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.38.0","maintainers":[{"name":"anonymous","email":"jmleyba@gmail.com"},{"name":"anonymous","email":"tomer@corevo.io"},{"name":"anonymous","email":"dhaeffner@gmail.com"},{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"a139abb8cf262c7746ef3f66a715e1d4200a494b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.38.0.tgz","fileCount":100,"integrity":"sha512-5/UXXFSQmn7FGQkbcpAqvfhzflUdMWtT7QqpEgkFD6Q6rDucxB5EUfzgjmr6JbUj30QodcW3mDXehzoeS/Vy5w==","signatures":[{"sig":"MEUCIQD38uGxCxoCpuY8qwzC/zvjE7yavENB/l8yuMgOxUeYeAIgegOithpfpiG6zAx7dNn99wMhws4Z4Hy/bbAhheSujPc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18520993},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"6b412e825cfd44e327e44981807d52183d5b6595","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.3","tmp":"^0.2.5","jszip":"^3.10.1","@bazel/runfiles":"^6.3.1"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.4","mocha":"^11.0.1","sinon":"^19.0.5","eslint":"^9.18.0","multer":"1.4.5-lts.2","express":"^4.21.2","globals":"^15.14.0","has-flag":"^5.0.1","prettier":"^3.4.2","@eslint/js":"^9.18.0","serve-index":"^1.9.1","supports-color":"^10.0.0","eslint-plugin-n":"^17.15.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.2.1","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.38.0_1761358463425_0.5202989063243812","host":"s3://npm-registry-packages-npm-production"}},"4.39.0":{"name":"selenium-webdriver","version":"4.39.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.39.0","maintainers":[{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"82c5dd78d2e03b3054d77ea591c3cb601022f801","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.39.0.tgz","fileCount":100,"integrity":"sha512-NAs9jCU+UeZ/ZmRb8R6zOp7N8eMklefdBYASnaRmCNXdgFE8w3OCxxZmLixkwqnGDHY5VF7hCulfw1Mls43N/A==","signatures":[{"sig":"MEQCIDIoKSzkOc8+00HOofatCkFKQ6EcvESMANb3fUMbQQODAiBTXynQ1O44jL07xOf9GnXcSYMX5a2TtTnLn0Mc4wgFRw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18387198},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"126f156aeef74660a72fa77efffc78adb1353620","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"diemol@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.3","tmp":"^0.2.5","jszip":"^3.10.1","@bazel/runfiles":"^6.5.0"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.5","mocha":"^11.7.5","sinon":"^19.0.5","eslint":"^9.39.1","multer":"2.0.2","express":"^4.21.2","globals":"^15.15.0","has-flag":"^5.0.1","prettier":"^3.6.2","@eslint/js":"^9.39.1","serve-index":"^1.9.1","supports-color":"^10.2.2","eslint-plugin-n":"^17.23.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.4","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.39.0_1765063242031_0.2115044342413499","host":"s3://npm-registry-packages-npm-production"}},"4.40.0":{"name":"selenium-webdriver","version":"4.40.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.40.0","maintainers":[{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"2872adbb2d3cde87585f5ba863daf51c2521ca26","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.40.0.tgz","fileCount":100,"integrity":"sha512-dU0QbnVKdPmoNP8OtMCazRdtU2Ux6Wl4FEpG1iwUbDeajJK1dBAywBLrC1D7YFRtogHzN96AbXBgBAJaarcysw==","signatures":[{"sig":"MEQCIAcSR3ayeq7CJXeHO5oBZQoK+PacpEzYOk1JGoWdtXcqAiB6iyzDcZQVV++2NCSXGXsEK+whMQozGuRJrhdS4zbXyA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":18222528},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"b3333f1c50b5ffa9c9cdaf325da79a84a4ec5ba1","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.18.3","tmp":"^0.2.5","jszip":"^3.10.1","@bazel/runfiles":"^6.5.0"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.5","mocha":"^11.7.5","sinon":"^19.0.5","eslint":"^9.39.1","multer":"2.0.2","express":"^4.21.2","globals":"^15.15.0","has-flag":"^5.0.1","prettier":"^3.6.2","@eslint/js":"^9.39.1","serve-index":"^1.9.1","supports-color":"^10.2.2","eslint-plugin-n":"^17.23.1","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.4","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.40.0_1768778994473_0.9188214339661727","host":"s3://npm-registry-packages-npm-production"}},"4.41.0":{"name":"selenium-webdriver","version":"4.41.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.41.0","maintainers":[{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"53b4e459462c4df64a99d5aedd15d4520a7c9977","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.41.0.tgz","fileCount":100,"integrity":"sha512-1XxuKVhr9az24xwixPBEDGSZP+P0z3ZOnCmr9Oiep0MlJN2Mk+flIjD3iBS9BgyjS4g14dikMqnrYUPIjhQBhA==","signatures":[{"sig":"MEYCIQDzEGoMDsGA8RSPY4eaUZlQgCl+eyKcr4oGa1tyI3aIXQIhAITQyGwGLLcefPHnL90+Pa9i+T3rKOV/64DbwR4+H+LQ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":17925933},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"9fc754f90a9725756933b8a1788d5a583d7f509f","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.19.0","tmp":"^0.2.5","jszip":"^3.10.1","@bazel/runfiles":"^6.5.0"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.5","mocha":"^11.7.5","sinon":"^19.0.5","eslint":"^9.39.2","multer":"2.0.2","express":"^4.22.1","globals":"^15.15.0","has-flag":"^5.0.1","prettier":"^3.8.1","@eslint/js":"^9.39.2","serve-index":"^1.9.2","supports-color":"^10.2.2","eslint-plugin-n":"^17.24.0","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.5","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.41.0_1771555880990_0.30431364795686444","host":"s3://npm-registry-packages-npm-production"}},"4.42.0":{"name":"selenium-webdriver","version":"4.42.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.42.0","maintainers":[{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"1a3c856861891dc80383be833f5336b963482696","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.42.0.tgz","fileCount":101,"integrity":"sha512-X+5Qe2v921BYATfU/Ckq/BbUVabRe+YAWZ5qiyBSd8EBue+fdoBsyYI506ETupzwZYEVUc3vcYMVSmH0oToDRg==","signatures":[{"sig":"MEUCIQC+6H8iw9De0g7KEZ5KCkj8iU6yINFF4tcctEJBo/xyZgIgLD3iWupsPhnf5MG61lH7Wo/a5EuGkzPxEuP3i3S/eRI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":17937953},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"74c7f0249ab2a3013bcb06b8695122274872be7f","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.20.0","tmp":"^0.2.5","jszip":"^3.10.1","@bazel/runfiles":"^6.5.0"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.5","mocha":"^11.7.5","sinon":"^19.0.5","eslint":"^9.39.4","multer":"2.0.2","express":"^4.22.1","globals":"^15.15.0","has-flag":"^5.0.1","prettier":"^3.8.1","@eslint/js":"^9.39.4","serve-index":"^1.9.2","supports-color":"^10.2.2","eslint-plugin-n":"^17.24.0","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.5","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.42.0_1775716614169_0.7047669656462545","host":"s3://npm-registry-packages-npm-production"}},"4.43.0":{"name":"selenium-webdriver","version":"4.43.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"license":"Apache-2.0","_id":"selenium-webdriver@4.43.0","maintainers":[{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"}],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"dist":{"shasum":"f19f9ba6f7b3d7e986f0d3794695ba6da09943ad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.43.0.tgz","fileCount":101,"integrity":"sha512-dV4zBTT37or3Z3/8uD6rS8zvd4ZxPuG4EJVlqYIbZCGZCYttZm7xb9rlFLSk4rrsQHAeDYvudl7cquo0vWpHjg==","signatures":[{"sig":"MEQCIAqA7Ro9Co6y2ZyzcDEP1AEsxHyYpZ+JK1NgWCM4Vwh4AiA6KCGkecQtcFeKTtsm/OnMcPkrUHa0dLa3o2ivA8MwcQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":17937494},"main":"./index","mocha":{"timeout":600000,"recursive":true},"engines":{"node":">= 20.0.0"},"funding":[{"url":"https://github.com/sponsors/SeleniumHQ","type":"github"},{"url":"https://opencollective.com/selenium","type":"opencollective"}],"gitHead":"dd0f5342f342c9583b2dde8e1619d6babc612ea0","scripts":{"lint":"eslint .","test":"bazel test //javascript/selenium-webdriver/...","lint:fix":"eslint . --fix","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"repository":{"url":"git+https://github.com/SeleniumHQ/selenium.git","type":"git"},"_npmVersion":"10.1.0","description":"The official WebDriver JavaScript bindings from the Selenium project","directories":{},"_nodeVersion":"20.9.0","dependencies":{"ws":"^8.20.0","tmp":"^0.2.5","jszip":"^3.10.1","@bazel/runfiles":"^6.5.0"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"_hasShrinkwrap":false,"devDependencies":{"jsdoc":"^4.0.5","mocha":"^11.7.5","sinon":"^19.0.5","eslint":"^9.39.4","multer":"2.0.2","express":"^4.22.1","globals":"^15.15.0","has-flag":"^5.0.1","prettier":"^3.8.1","@eslint/js":"^9.39.4","serve-index":"^1.9.2","supports-color":"^10.2.2","eslint-plugin-n":"^17.24.0","clean-jsdoc-theme":"^4.3.0","eslint-plugin-mocha":"^10.5.0","mocha-junit-reporter":"^2.2.1","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.5","eslint-plugin-no-only-tests":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/selenium-webdriver_4.43.0_1775803613970_0.42302626135059973","host":"s3://npm-registry-packages-npm-production"}},"4.44.0":{"name":"selenium-webdriver","version":"4.44.0","description":"The official WebDriver JavaScript bindings from the Selenium project","license":"Apache-2.0","keywords":["automation","selenium","testing","webdriver","webdriverjs"],"homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme","bugs":{"url":"https://github.com/SeleniumHQ/selenium/issues"},"main":"./index","repository":{"type":"git","url":"git+https://github.com/SeleniumHQ/selenium.git"},"engines":{"node":">= 20.0.0"},"dependencies":{"@bazel/runfiles":"^6.5.0","jszip":"^3.10.1","tmp":"^0.2.5","ws":"^8.20.1"},"devDependencies":{"@eslint/js":"^9.39.4","clean-jsdoc-theme":"^4.3.2","eslint":"^9.39.4","eslint-config-prettier":"^10.1.8","eslint-plugin-mocha":"^10.5.0","eslint-plugin-n":"^17.24.0","eslint-plugin-no-only-tests":"^3.4.0","eslint-plugin-prettier":"^5.5.5","express":"^4.22.2","globals":"^15.15.0","has-flag":"^5.0.1","jsdoc":"^4.0.5","mocha":"^11.7.5","mocha-junit-reporter":"^2.2.1","multer":"2.0.2","prettier":"^3.8.3","serve-index":"^1.9.2","sinon":"^19.0.5","supports-color":"^10.2.2"},"scripts":{"lint":"eslint .","lint:fix":"eslint . --fix","test":"bazel test //javascript/selenium-webdriver/...","generate-docs":"jsdoc --configure jsdoc_conf.json --verbose"},"mocha":{"recursive":true,"timeout":600000},"publishConfig":{"registry":"https://registry.npmjs.org/"},"funding":[{"type":"github","url":"https://github.com/sponsors/SeleniumHQ"},{"type":"opencollective","url":"https://opencollective.com/selenium"}],"_id":"selenium-webdriver@4.44.0","gitHead":"da2039bd1456a161d0c284de16f9f4f179f1e8ca","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-7RbYoKK0zET+KMVak11UDCtKvNulOU6gFZp8HI5GN9K8+BhqrliIJU/FP6QADrvRAXFMr3wHxfE3JHOcAxO3GQ==","shasum":"c6499102272ac132eef44b984096ace6620aa710","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/selenium-webdriver/-/selenium-webdriver-4.44.0.tgz","fileCount":101,"unpackedSize":18092410,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCnbwCI/JjglTRr9SD0dvNPPqx/d+49UALYySj6gfTc/wIgQ+pDs5HvVFXTQD9vrIRZ50AykqUCAK/MNYYC7WQS/pU="}]},"_npmUser":{"name":"anonymous","email":"titusfortner@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sri_harsha509@hotmail.com"},{"name":"anonymous","email":"david.burns@theautomatedtester.co.uk"},{"name":"anonymous","email":"diemol@gmail.com"},{"name":"anonymous","email":"titusfortner@gmail.com"},{"name":"anonymous","email":"puja.jagani93@gmail.com"},{"name":"anonymous","email":"jmleyba@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/selenium-webdriver_4.44.0_1778626549641_0.9638383020093253"},"_hasShrinkwrap":false}},"name":"selenium-webdriver","time":{"created":"2013-02-14T20:44:42.963Z","modified":"2026-05-12T22:55:50.228Z","2.29.0":"2013-02-14T20:44:43.830Z","2.29.1":"2013-02-18T05:43:04.425Z","2.30.0":"2013-02-19T00:13:07.536Z","2.31.0":"2013-03-03T01:12:33.960Z","2.32.0":"2013-04-14T18:59:32.486Z","2.32.1":"2013-04-23T03:44:56.629Z","2.33.0":"2013-05-27T16:15:25.525Z","2.34.0":"2013-08-06T18:14:38.581Z","2.34.1":"2013-08-09T20:28:32.702Z","2.35.0":"2013-08-12T22:10:28.241Z","2.35.1":"2013-08-27T22:00:38.139Z","2.35.2":"2013-09-27T16:42:53.036Z","2.37.0":"2013-10-18T17:14:59.996Z","2.38.0":"2013-12-05T18:09:44.636Z","2.38.1":"2013-12-09T01:49:35.256Z","2.39.0":"2013-12-16T20:35:40.801Z","2.40.0":"2014-02-19T18:23:45.907Z","2.41.0":"2014-03-28T16:58:42.287Z","2.42.0":"2014-05-23T20:15:49.862Z","2.42.1":"2014-06-10T19:03:16.647Z","2.43.0":"2014-09-12T17:01:24.930Z","2.43.1":"2014-09-12T18:17:26.624Z","2.43.2":"2014-09-12T21:34:10.491Z","2.43.3":"2014-09-12T21:39:03.790Z","2.43.4":"2014-09-13T17:28:53.165Z","2.43.5":"2014-09-18T02:59:14.398Z","2.44.0":"2014-10-24T02:53:55.449Z","2.45.0":"2015-02-27T01:37:40.271Z","2.45.1":"2015-03-02T04:51:05.194Z","2.46.0":"2015-06-07T02:35:45.137Z","2.46.1":"2015-06-15T21:23:14.908Z","2.47.0":"2015-09-18T16:51:46.839Z","2.48.0":"2015-10-18T23:02:32.253Z","2.48.1":"2015-11-02T03:49:30.135Z","2.48.2":"2015-11-03T22:31:27.174Z","2.52.0":"2016-02-12T06:51:55.459Z","2.53.1":"2016-03-15T21:17:48.260Z","2.53.2":"2016-04-28T23:17:43.944Z","2.53.3":"2016-06-28T23:04:21.159Z","3.0.0-beta-1":"2016-08-06T17:21:32.559Z","3.0.0-beta-2":"2016-08-08T03:45:06.062Z","3.0.0-beta-3":"2016-09-21T16:05:04.403Z","3.0.0":"2016-11-03T18:30:34.002Z","3.0.1":"2016-11-08T22:27:34.771Z","3.1.0":"2017-02-15T18:52:50.958Z","3.3.0":"2017-03-06T02:16:47.049Z","3.4.0":"2017-04-21T20:33:09.967Z","3.5.0":"2017-07-24T02:31:47.505Z","3.6.0":"2017-10-06T00:16:01.013Z","4.0.0-alpha.1":"2018-01-13T16:57:37.535Z","4.0.0-alpha.2":"2019-06-16T07:43:58.339Z","4.0.0-alpha.3":"2019-06-16T10:43:00.626Z","4.0.0-alpha.4":"2019-06-24T07:15:17.187Z","4.0.0-alpha.5":"2019-09-08T13:48:37.876Z","4.0.0-alpha.6":"2020-03-05T09:08:46.707Z","4.0.0-alpha.7":"2020-03-05T11:01:14.196Z","4.0.0-alpha.8":"2020-12-04T05:07:21.508Z","4.0.0-beta.1":"2021-02-15T14:56:27.333Z","4.0.0-beta.2":"2021-03-16T17:24:29.923Z","4.0.0-beta.3":"2021-04-13T18:42:21.873Z","4.0.0-beta.4":"2021-06-07T15:49:58.580Z","4.0.0-rc-1":"2021-09-01T17:38:14.367Z","4.0.0-rc-2":"2021-09-30T14:02:21.962Z","4.0.0":"2021-10-13T13:46:27.125Z","4.1.0":"2021-11-22T16:05:19.850Z","4.1.1":"2022-01-10T13:31:49.300Z","4.1.2":"2022-04-28T10:09:52.313Z","4.2.0":"2022-05-27T14:57:33.193Z","4.3.0":"2022-06-23T22:30:56.138Z","4.3.1":"2022-07-07T10:40:10.408Z","4.4.0":"2022-08-09T10:27:21.235Z","4.5.0":"2022-09-28T20:08:43.246Z","4.6.0":"2022-11-04T10:40:06.839Z","4.6.1":"2022-11-15T12:31:29.981Z","4.7.0":"2022-12-01T22:47:33.333Z","4.7.1":"2022-12-14T05:05:27.987Z","4.8.0":"2023-01-23T13:04:17.860Z","4.8.1":"2023-02-17T17:07:27.878Z","4.8.2":"2023-03-24T18:13:41.128Z","4.9.0":"2023-04-21T00:14:01.503Z","4.9.1":"2023-05-08T11:39:37.457Z","4.9.2":"2023-05-11T08:13:39.310Z","4.10.0":"2023-06-07T16:17:36.250Z","4.11.0":"2023-07-31T19:47:30.687Z","4.11.1":"2023-08-01T04:44:55.532Z","4.12.0":"2023-08-31T19:53:25.560Z","4.13.0":"2023-09-25T19:10:15.732Z","4.14.0":"2023-10-10T03:25:24.554Z","4.15.0":"2023-11-01T14:16:33.096Z","4.16.0":"2023-12-06T09:27:23.673Z","4.17.0":"2024-01-23T06:14:15.444Z","4.18.0":"2024-02-19T14:52:25.565Z","4.18.1":"2024-02-20T00:14:59.691Z","4.19.0":"2024-03-27T15:01:03.321Z","4.20.0":"2024-04-24T20:19:13.426Z","4.21.0":"2024-05-16T11:05:25.203Z","4.22.0":"2024-06-20T20:58:40.697Z","4.23.0":"2024-07-19T06:24:16.989Z","4.24.0":"2024-08-28T11:41:28.800Z","4.24.1":"2024-09-16T10:41:54.218Z","4.25.0":"2024-09-20T15:38:39.453Z","4.26.0":"2024-10-30T09:20:49.487Z","4.27.0":"2024-11-25T14:27:39.771Z","4.28.0":"2025-01-20T17:20:35.935Z","4.28.1":"2025-01-20T20:53:46.530Z","4.29.0":"2025-02-20T11:24:24.615Z","4.30.0":"2025-03-21T21:22:22.756Z","4.31.0":"2025-04-05T00:59:08.981Z","4.32.0":"2025-05-02T20:35:46.270Z","4.33.0":"2025-05-23T17:43:32.174Z","4.34.0":"2025-06-29T07:28:01.252Z","4.35.0":"2025-08-12T15:45:25.740Z","4.36.0":"2025-10-02T15:25:24.746Z","4.37.0":"2025-10-17T21:14:44.105Z","4.38.0":"2025-10-25T02:14:23.826Z","4.39.0":"2025-12-06T23:20:42.431Z","4.40.0":"2026-01-18T23:29:54.846Z","4.41.0":"2026-02-20T02:51:21.357Z","4.42.0":"2026-04-09T06:36:54.586Z","4.43.0":"2026-04-10T06:46:54.371Z","4.44.0":"2026-05-12T22:55:50.011Z"},"readmeFilename":"README.md","homepage":"https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme"}