get_test_point_props#

Layer.get_test_point_props(request)#

Return the properties for each test point given a comma-separated list of test point IDs.

Available Since: 2026R1

Parameters:
request: GetTestPointPropertiesRequest

Contains all the information needed to return the properties for one or more test points.

Returns:
:
list[SherlockCommonService_pb2.GetTestPointPropertiesResponse]

Properties for each test point that correspond to the reference designators.

Return type:

list[GetTestPointPropertiesResponse]

Examples

>>> from ansys.sherlock.core.launcher import launch_sherlock
>>> from ansys.sherlock.core.types.layer_types import GetTestPointPropertiesRequest
>>> sherlock = launch_sherlock()
>>> request = layer_types.GetTestPointPropertiesRequest(
>>>    project = "Test Point Test Project"
>>>    cca_name = "Main Board"
>>>    test_point_ids = "TP1,TP2"
>>> )
>>> responses = layer.get_test_point_props(request)