Counterstring

simple counterstring generation

Counterstring क्या है?

Counterstring eviltesterapps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "simple counterstring generation"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Counterstring एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A CounterString is a string of text e.g. `*3*5*7*9*12*15*` where:

- the string is a specific length e.g. 15
- the last character in the string is an *
- the numbers before each * are the position of the *

This can act as Test Data for helping test the length allowed in forms and other data fields. If the value is truncated then you can tell from the numbers and the '*' how long the string is e.g. `*3*5*7*9*12*15` is 14 characters long because the '*' after 15 is missing.

CounterStrings are commonly used in  exploratory testing.

This extension is a simple CounterString generator, which:

- displays a dialog asking for the number of characters,
- then generates a CounterString of that length
- the CounterString is logged to the dev console to allow copy and pasting,
- the extension also inserts the CounterString into the value of the field that was selected when the right click context menu was displayed
- this supports supports testing online forms.

Instructions for use:

- right click on and input field
- enter value of CounterString
- CounterString will be logged to the console (use dev tools to see it)
- CounterString will be inserted as the value of the WebElement you clicked on

Note:

- works with forms on the actual page
- this extension does not work with forms embedded in frames

This is open source and source can be found at GitHub:

- https://github.com/eviltester/counterstringjs                    

एक्सटेंशन की मूल जानकारी

नाम Counterstring Counterstring
ID keklpkmokeicakpclclkdmclhgkklmbd
आधिकारिक URL https://chromewebstore.google.com/detail/counterstring/keklpkmokeicakpclclkdmclhgkklmbd
विवरण simple counterstring generation
फ़ाइल का आकार 11.89 KB
स्थापना संख्या 230
वर्तमान संस्करण 0.1
अंतिम अपडेट 2019-04-01
प्रकाशन तिथि 2019-03-21
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर eviltesterapps
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/eviltester/counterstringjs
गोपनीयता नीति पृष्ठ URL https://www.eviltester.com/page/privacy
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Counterstring",
    "version": "0.1",
    "description": "simple counterstring generation",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "icons\/icon16x16.png",
        "48": "icons\/icon48x48.png",
        "128": "icons\/icon128x128.png"
    }
}