Test & Feedback

Now everyone on the team can own quality. Capture findings, create issues, and collaborate with the team, directly from the browser.

什么是Test & Feedback?

Test & Feedback是由Microsoft Corporation开发的Chrome扩展程序,该扩展的主要功能是“Now everyone on the team can own quality. Capture findings, create issues, and collaborate with the team, directly from the browser.”。

扩展截图

screenshot
screenshot
screenshot

下载Test & Feedback扩展crx文件

下载Test & Feedback扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Test & Feedback - Now everyone on the team can own quality. Capture findings, create issues, and collaborate with the team, directly from the browser.  

Everyone in the team, be it product owners, developers, testers, UX designers etc., can now test their web-apps and give feedback, all directly from the browser on any platform: Windows, Mac, or Linux. All kinds of teams will now be able to drive quality in 3 easy steps – capture, create & collaborate. 

Capture - Take notes, screenshots with annotations, and screen recordings to capture problems. Automatically include rich data like user actions (as an image action log), page load data, and system information. 

Create - Create bugs, tasks, and feedback response work items to send feedback or report problems. Create test cases quickly based on the image action log while you explore your app. Automatically attach all your captured information. 

Collaborate - Work offline in standalone mode, then export your session to share findings with your team. For more integrated experiences with end-to-end traceability, connect to Azure DevOps Services or to Team Foundation Server 2015 or later. For example, you can explore user stories directly from the board, manage all feedback requests received, and easily track bugs, tasks and other work-items. To view completed exploratory sessions and get insights across all completed sessions, for example, details about sessions and work items that are created, explored, and weren’t explored, plus other data, go to your exploratory testing insights page. 

You can use the extension for FREE in these modes: Standalone and Connected 

Standalone Mode: 
Available to everyone. Any team, large or small, can use standalone mode to capture issues using screenshots with inline annotations and notes and then share the results using a session report. No connection to Azure DevOps Services or Team Foundation Server required.  

Connected Mode: 
Connect to Azure DevOps Services/Team Foundation Server to drive your exploratory testing and feedback flows.  
- Users with Basic access: Full capture and create capabilities to submit bugs, tasks and test cases. Includes collaboration capabilities like end-to-end traceability, rich insights across completed exploratory sessions, simplified bug/task tracking & triaging, and so on. 
- Users with Stakeholder access: Full capture and create capabilities, except for test cases, to submit feedback and respond to feedback requests from your team. Feedback experiences are available in Team Services and TFS 2017 or later only. 
 
Learn more https://docs.microsoft.com/en-us/azure/devops/test/perform-exploratory-tests?view=vsts                    

扩展基本信息

名称 Test & Feedback Test & Feedback
ID gnldpbnocfnlkkicnaplmkaphfdnlplb
官方URL https://chromewebstore.google.com/detail/test-feedback/gnldpbnocfnlkkicnaplmkaphfdnlplb
简介 Now everyone on the team can own quality. Capture findings, create issues, and collaborate with the team, directly from the browser.
文件大小 1.87 MB
安装次数 186,289
当前版本 1.0.232.0
更新时间 2024-01-03
上架时间 2020-05-14
评分 4.22/5 共174次评分
开发者 Microsoft Corporation
电子邮箱 [email protected]
付费类型 free
扩展官网 https://marketplace.visualstudio.com/items?itemName=ms.vss-exploratorytesting-web
帮助页面URL https://azure.microsoft.com/en-us/support/devops/
隐私政策页面URL http://aka.ms/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Test & Feedback",
    "short_name": "XT, exploratory tesing, feedback, TF",
    "version": "1.0.232.0",
    "description": "Now everyone on the team can own quality. Capture findings, create issues, and collaborate with the team, directly from the browser.",
    "homepage_url": "https:\/\/marketplace.visualstudio.com\/items?itemName=ms.vss-exploratorytesting-web",
    "icons": {
        "128": "Images\/NormalState-128.png",
        "48": "Images\/NormalState-48.png",
        "16": "Images\/NormalState-16.png"
    },
    "browser_action": {
        "default_icon": "Images\/NormalState-128.png",
        "default_title": "Test & Feedback",
        "default_popup": "Popup2\/Popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+Y",
                "linux": "Ctrl+Shift+Y"
            }
        }
    },
    "background": {
        "page": "Background\/Worker\/Background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "ContentScript\/CustomisedWorkItemMessaging.js",
                "ContentScript\/CaptureBrowserEvent.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "match_about_blank": true
        }
    ],
    "options_ui": {
        "page": "Options\/Options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "Fonts\/*.*"
    ],
    "permissions": [
        "activeTab",
        "clipboardRead",
        "tabs",
        "storage",
        "desktopCapture",
        "",
        "unlimitedStorage",
        "system.cpu",
        "system.memory",
        "system.display",
        "webNavigation"
    ],
    "sandbox": {
        "pages": [
            "AnnotationTool\/View\/AnnotationTool.html"
        ]
    }
}