File

SCPI Commands :

MTESt:FILE:DELete
MTESt:FILE:OPEN
MTESt:FILE:SAVE
Commands in total: 4
Subgroups: 1
Direct child commands: 3
delete(mask_test_name: str) None[source]
# MTESt:FILE:DELete
driver.mtest.file.delete(mask_test_name = 'abc')

Deletes the specified mask test.

Parameters:

mask_test_name – String with the name of the mask test

open(mask_test_name: str) None[source]
# MTESt:FILE:OPEN
driver.mtest.file.open(mask_test_name = 'abc')

Loads the specified mask test to the instrument.

Parameters:

mask_test_name – String with the name of the mask test

save(mask_test_name: str) None[source]
# MTESt:FILE:SAVE
driver.mtest.file.save(mask_test_name = 'abc')

Saves the specified mask test. It contains the mask definition, defined actions and fail conditions.

Parameters:

mask_test_name – String with the name of the mask test

Cloning the Group

# Create a copy of the original group, that exists independently
file_copy = driver.mtest.file.clone()

Subgroups