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

Custom Fields

Capture for JIRA has the following custom fields:

NameSupported VersionsDescription
Test Session(s)JIRA Capture 2.1+Lists the Test Sessions that are related to this issue.
Raised DuringJIRA Capture 2.1+Shows the 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. Only visible on the web panel on the View Issue page.
JIRA Capture BrowserJIRA Capture 2.2+Stores the Browser Info of the reporter of an issue created using Capture for JIRA. Only visible on the 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. Only visible on the 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. Only visible on the 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. Only visible on the 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. Only visible on the web panel on the View Issue page.
Testing StatusJIRA Capture 2.4+

Shows the total testing status of this issue using all of the 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. Only visible on the web panel on the View Issue page.

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

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

Useful JQL Commands

You will need to re-index your JIRA instance before any searches in JQL will work properly.

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

SearchDescription


"JIRA Capture Browser" ~ "Chrome"


Searches for all issues that were raised in Chrome, when using Capture for JIRA.


"Testing Status" = "In Progress"


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


"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.


"JIRA Capture Operating System" ~ "Windows"


Searches for all issues that were raised using Capture for JIRA in any Windows Operating System.


"JIRA Capture URL" ~ "2990/jira/secure/"


Searches for all issues that were raised using Capture for JIRA from a page that had "2990/jira/secure/" in the URL.