Loadzen Recorder

Create scenarios in your browser for load tests at http://www.loadzen.com.

Loadzen Recorder là gì?

Loadzen Recorder là một tiện ích mở rộng Chrome được phát triển bởi http://loadzen.com, và tính năng chính của nó là "Create scenarios in your browser for load tests at http://www.loadzen.com.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Loadzen Recorder

Tải xuống các tệp mở rộng Loadzen Recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The Loadzen Recorder will allow you to record your browser session into a scenario that can be included in load tests that you run on http://www.Loadzen.com

** Changes for v2.6 **
- App is now fully compatible with the new Loadzen platform and API
- App now ensures user is logged in to save scenarios

** Changes for v2.5 **
- Fixed minor bug with POST tracking with arbitrary port numbers

** Changes for v2.4 **
- Bug fixes
- Tracks multi-domain scenarios better for greater flexibility


Key features include:
1. Complete journey recording
2. Form entry and capture
3. AJAX POST and GET tracking
4. Dynamic data submission (in XHR, POST and GET actions)
5. Scenario tweaking post-recording
6. *NEW* Random dynamic data submission

*Complete Journey Recording*

The new Loadzen Recorder will track your entire user journey from start to finish, including any data that is passed along the journey through GET and POST requests. We’ve improved the recording system to be more accurate and collect the most detailed breakdown of your user journey, ensuring that our testing system can emulate your user journeys as effectively as possible.

*Form Entry and Capture*

Our new form entry and capture system improves on previous versions by fully supporting forms that are submitted via JavaScript instead of tradition form submissions, with full support for both GET and POST form data capture.

*Ajax POST and GET tracking*

To make our recorder even better, it now fully support dynamic web applications and AJAX-enabled sites. Our new and improved recorder will automatically track XHR Requests (Ajax) while you browse and interact with your app, both GET and POST Ajax traffic is fully tracked.

*Dynamic Data Submission*

To build on the capability of being able to test dynamic web apps, we’ve broadened the entire Loadzen Load Testing service to allow you to upload random sample data that will be passed along and used within your scenario. Need to test an order form? Want to see how your site search responds to complex queries? You can attach sample data to your scenario actions right from inside the plug-in with just a few clicks.

*Random Data Generation*
If you require unique data for your scenario actions that can't be duplicated in any way (which can occur with a CSV Dynamic Test) then our new Dynamic Random Data generation feature is for you.

Loadzen now allows you to generate strings, paragraphs, sentences, integers and floats as part of your scenario actions. This random data is generated on-the-fly to guarantee randomness so you can really put your dynamic site elements to the test.

*Scenario tweaking post-record*

Instead of just submitting your scenario to our servers for testing, the plug-in will show the full record log, allowing to remove items from the list and to attach dynamic data sets to recorded actions before you send it through to our servers for testing.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Loadzen Recorder Loadzen Recorder
ID mgbkjhjjjiffgggjegpajnfikoeajeej
URL Chính Thức https://chrome.google.com/webstore/detail/loadzen-recorder/mgbkjhjjjiffgggjegpajnfikoeajeej
Mô tả Create scenarios in your browser for load tests at http://www.loadzen.com.
Kích Thước Tệp 177 KB
Số Lần Cài Đặt 198
Phiên Bản Hiện Tại 2.6.1
Cập Nhật Lần Cuối 2014-03-10
Ngày Phát Hành 2014-03-10
Đánh Giá 2.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển http://loadzen.com
Loại Thanh Toán free
Trang Web Mở Rộng http://loadzen.com/plugin/loadzen-recorder/
URL Trang Trợ Giúp http://localhost:8000/plugin/loadzen-recorder/
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Loadzen Recorder",
    "version": "2.6.1",
    "manifest_version": 2,
    "description": "Create scenarios in your browser for load tests at http:\/\/www.loadzen.com.",
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "webRequest",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/libs\/jquery.min.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/libs\/underscore-min.js",
            "js\/libs\/backbone-min.js",
            "js\/libs\/backbone-localstorage.js",
            "js\/lz-models.js",
            "js\/background.js"
        ]
    },
    "sandbox": {
        "pages": [
            "main_window.html",
            "popup.html",
            "background.html"
        ]
    },
    "web_accessible_resources": [
        "js\/track_xhr.js"
    ]
}