Testofill, Form Filler for Testers

Enable testers to fill forms automatically/on-demand based on (sets of) rules they wrote / captured.

Testofill, Form Filler for Testers란 무엇입니까?

Testofill, Form Filler for Testers은(는) Jakub Holý에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable testers to fill forms automatically/on-demand based on (sets of) rules they wrote / captured."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Testofill, Form Filler for Testers 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Testofill allows you to define one or more sets of rules for filling forms on a particular page and to fill them in automatically or on demand with hardcoded or random values. It targets people that can write little CSS (such as "[name='myfield']") and that need to be able to choose from a sets of values to fill in. A typical example is a tester that needs to repeatedly fill in different search criteria to test her app and thus wants to define rule sets such as "Simple book search" and "Advanced book search".

The main advantages are being able to have multiple sets of values for a single form, having full access to and control over these values, and ability to generate random values.

It is also possible to create rules automatically from a filled form and adjust them later.

Tip: You need to enable the extension in Incognito mode on the Extensions page if you want to be able to use it when Incognito.

Security tip: Only allow the plugin access to the sites where you use it - see "Add or remove access to a specific site" at https://support.google.com/chrome_webstore/answer/2664769

Change log:

  * 0.14 - Fix to really ignore iframes, which broke "save forms"
  * 0.13 - Improve React support (focus elements before changing them - works better with some components)
  * 0.12 - Save forms ignores iframes instead of being confused by them
  * 0.11 Save forms accepts fields that have only id and no name
  * 0.10 - Full support for React forms (v16)
  * 0.9 - Fix autofill
  * 0.8
    - partial support for forms created by React.js (text input only)
  * 0.7.2 
    - experimental support for creating random values using Chance.js
    - fixed repeated save form confirmation popup
    - added save form logging
  * 0.6.0
    - increase limit on config size frm 4kB to 5MB (and drop sync across browsers)

More info at the project page (https://github.com/jakubholynet/Testofill-chrome-extension/).

Icon by Designmodo (https://www.iconfinder.com/icons/115700/edit_pen_pencil_write_icon).                    

확장 프로그램 기본 정보

이름 Testofill, Form Filler for Testers Testofill, Form Filler for Testers
ID pkgdgajoinhkfldibdaledjikboognnl
공식 URL https://chromewebstore.google.com/detail/testofill-form-filler-for/pkgdgajoinhkfldibdaledjikboognnl
설명 Enable testers to fill forms automatically/on-demand based on (sets of) rules they wrote / captured.
파일 크기 174 KB
설치 횟수 2,881
현재 버전 0.14.0
최근 업데이트 2019-03-01
출시 날짜 2019-03-01
평점 3.67/5 총 18 개의 평점
개발자 Jakub Holý
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/holyjak/Testofill-chrome-extension
도움말 페이지 URL https://github.com/holyjak/Testofill-chrome-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Testofill, Form Filler for Testers",
    "version": "0.14.0",
    "manifest_version": 2,
    "author": "Jakub Holy ",
    "icons": {
        "16": "autofill_16x16.png"
    },
    "description": "Enable testers to fill forms automatically\/on-demand based on (sets of) rules they wrote \/ captured.",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Testofill",
        "default_icon": {
            "19": "autofill_16x16.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "generated\/testofill-content-packed.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "events.js"
        ],
        "persistent": false
    }
}