Hi Team, we are looking for UFT integration with JIRA to extract test case details and defect associated to Test case into Excel file. Please help us with process and code.
Which scripting addon are you using?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The basic code you need is issue.getCustomFieldValue(componentManager.getCustomFieldManager().getCustomFieldObjectByName("MySelect")) For a check-box, that will return an array of possible values, which you can then iterate through to concatenate, then you'll need to repeat that for each of your 27 checkbox fields.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is this the default? I assume componentManager is the field name here. What do the other 2 do? getCustomFieldManager().getCustomFieldObjectByName("MySelect")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, the field name is "MySelect". componentManager is the manager class you need to use to get a handle on the fields
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.