Automated Website Testing File Generator
Page Object Builder for Automated Test Suites.
What is Automated Website Testing File Generator?
Automated Website Testing File Generator is a Chrome extension developed by TeamWATER, and its main feature is "Page Object Builder for Automated Test Suites.".
Extension Screenshots
Download Automated Website Testing File Generator Extension CRX File
Download Automated Website Testing File Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Currently in BETA! Extension which scrapes dynamic HTML to generate files for use in automated testing suites: 🔎 Scrapes (configurable): Buttons Links Inputs Javascript on-click Angular ng-click 📄 Outputs (configurable): Text XML Selenium SeleniumObjectsAndMethods.java Jasmine JavaScriptObjects.js
Extension Basic Information
Name | |
ID | jajjkhengkceflfndohpbomnkdknnidc |
Official URL | https://chrome.google.com/webstore/detail/automated-website-testing/jajjkhengkceflfndohpbomnkdknnidc |
Description | Page Object Builder for Automated Test Suites. |
File Size | 34.66 KB |
Installation Count | 466 |
Current Version | 1.3.1 |
Last Updated | 2017-04-24 |
Publish Date | 2017-04-24 |
Rating | 4.20/5 Total 5 Ratings |
Developer | TeamWATER |
Payment Type | free |
Extension Website | https://www.cefns.nau.edu/capstone/projects/CS/2017/AutomatedTesting/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Automated Website Testing File Generator", "description": "Page Object Builder for Automated Test Suites.", "version": "1.3.1", "icons": { "48": "water-icon48.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "middleware.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "downloads" ] } |