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) – GetTestPointPropertiesRequest: Contains all the information needed to return the properties for one or more test points.

Return type:

list[GetTestPointPropertiesResponse]

Returns:

:
list[SherlockCommonService_pb2.GetTestPointPropertiesResponse]

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

Examples

>>> from ansys.sherlock.core.types.layer_types import GetTestPointPropertiesRequest
>>> from ansys.sherlock.core import launcher
>>> sherlock, install_dir = launcher.launch_and_connect(transport_mode="wnua")
>>> 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)