You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
why is there a need to provide a list of customCaseFields to this method?
the following REST API call returns list of cases with all custom fields set:
according to TestRail REST API documentation, custom fields returned start with "custom_" prefix. so all these fields can be loaded from the Json response as a Map to Case class.
and then they could be retrieved by name:
Object value = aCase.getCustomField(name)
The text was updated successfully, but these errors were encountered:
# This is the 1st commit message:
# This is a combination of 8 commits.
# This is the 1st commit message:
Added new fields to Milestone available since TestRail 5.3; Fixed configuration of Lombok; Added Template model
# This is the commit message codepine#2:
Added Nexus distributionManagement to pom
# This is the commit message codepine#3:
Changed groupID
# This is the commit message codepine#4:
Fixed configuration of Lombok; Added Template model
# This is the commit message codepine#5:
Added deserialization of test Templates json file, updated Template class to deserialize is_default correctly
# This is the commit message codepine#6:
Added new fields to Milestone available since TestRail 5.3
# This is the commit message codepine#7:
Updated pom with release information for forked version of project
# This is the commit message codepine#8:
Update issue templates
# This is the commit message codepine#2:
Removed log4j dependency
I see this API for loading cases:
which is not consistent with other calls, like
why is there a need to provide a list of customCaseFields to this method?
the following REST API call returns list of cases with all custom fields set:
according to TestRail REST API documentation, custom fields returned start with "custom_" prefix. so all these fields can be loaded from the Json response as a Map to Case class.
and then they could be retrieved by name:
The text was updated successfully, but these errors were encountered: