Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Publishing for JIRA Capture rebranding for Ash

Table of Contents

Capture for JIRA Capture ships with custom fields that can be searched using JQL.

Custom Fields

JIRA Capture has for JIRA has the following custom fields: 

NameSupported VersionsDescription
Test Session(s)JIRA Capture 2.1+Lists the JIRA Capture Test Sessions that are related to this issue.
Raised DuringJIRA Capture 2.1+Shows the JIRA Capture Test Session that this issue was raised during.
JIRA Capture User AgentJIRA Capture 2.2+Stores the raw User Agent of the reporter of an issue created using Capture for JIRA Capture. Only visible on the JIRA Capture web panel on the View Issue page.
JIRA Capture BrowserJIRA Capture 2.2+Stores the Brower Browser Info of the reporter of an issue created using Capture for JIRA Capture. Only visible on the JIRA Capture web panel on the View Issue page.
JIRA Capture Operating SystemJIRA Capture 2.2+Stores the Operating System Info of the reporter of an issue created using Capture for JIRA Capture. Only visible on the JIRA Capture web panel on the View Issue page.
JIRA Capture URLJIRA Capture 2.2+Stores the URL of the page an issue created was on, when using Capture for JIRA Capture was on. Only visible on the JIRA Capture web panel on the View Issue page.
JIRA Capture Screen ResolutionJIRA Capture 2.2+Stores the Screen Resolution for the reporter of an issue created using Capture for JIRA Capture. Only visible on the JIRA Capture web panel on the View Issue page.
JIRA Capture jQuery VersionJIRA Capture 2.2+Stores the jQuery Version of the page an issue created was on, when using Capture for JIRA Capture was on. Only visible on the JIRA Capture web panel on the View Issue page.
Testing StatusJIRA Capture 2.4+

Shows the total testing status of this issue using all of the JIRA Capture Test Sessions related to this issue.

The Testing Status field can have the following values:

  • Not Started - All test sessions relating to this issue have not been started or this issue has no test sessions related to this issue
  • In Progress - One or more of the related test sessions has been Started or Paused
  • Incomplete - There are related test sessions that are Completed and Not Started, but no related test sessions are In Progress
  • Complete - All test sessions related to this issue are complete
JIRA Capture Document ModeJIRA Capture 2.5+Stores the Document Mode of the page an issue created was on, when using Capture for JIRA Capture was on. Only visible on the JIRA Capture web panel on the View Issue page.

All custom fields in JIRA Capture are for JIRA are created programmatically using bundled custom fields types that are bundled with JIRA Capture. Using these custom field types for fields not generated by JIRA Capture is for JIRA is not recommended.

All of these custom fields can be used in JQL to find issues.

...

These JQL commands are examples of the types of searches that can be done using the JIRA Capture Custom Fields in Capture for JIRA.

SearchDescription
Code Block
themeConfluence
languagehtml/xml
themeConfluence
"JIRA Capture Browser" ~ "Chrome"
Searches for all issues that were raised in Chrome, when using Capture for JIRA Capture in Chrome.
Confluence
Code Block
theme
languagehtml/xml
themeConfluence
"Testing Status" = "In Progress"

Searches for all issues that are related to an "In Progress" Test session.

Code Block
languagehtml/xml
"Testing Status" = "Not Started" and "Test Session(s)" is not empty
Searches for all issues that have related test sessions that have not been started. This is good for users that create their test sessions before development.
Code Block
languagehtml/xml
"JIRA Capture Operating System" ~ "Windows"
Searches for all issues that were raised using Capture for JIRA Capture in any Windows Operating System.
Code Block
languagehtml/xml
"JIRA Capture URL" ~ "2990/jira/secure/"
Searches for all issues that were raised using Capture for JIRA Capture from a page that had "2990/jira/secure/" in the URL.