Executable
SCPI Commands :
EXECutable:NAME
EXECutable:PARameter
EXECutable:WDIRectory
- Commands in total: 3Subgroups: 0Direct child commands: 3
- get_name() str[source]
# EXECutable:NAME value: str = driver.executable.get_name()
Sets the path to the application executable.
- Returns:
application_path: String parameter containing path, filename, and file extension
- get_parameter() str[source]
# EXECutable:PARameter value: str = driver.executable.get_parameter()
Sets optional parameters for the external executable.
- get_wdirectory() str[source]
# EXECutable:WDIRectory value: str = driver.executable.get_wdirectory()
Sets the working directory for the executable.
- Returns:
work_directory: String parameter
- set_name(application_path: str) None[source]
# EXECutable:NAME driver.executable.set_name(application_path = 'abc')
Sets the path to the application executable.
- Parameters:
application_path – String parameter containing path, filename, and file extension
- set_parameter(application_parameters: str) None[source]
# EXECutable:PARameter driver.executable.set_parameter(application_parameters = 'abc')
Sets optional parameters for the external executable.
- Parameters:
application_parameters – String parameter
- set_wdirectory(work_directory: str) None[source]
# EXECutable:WDIRectory driver.executable.set_wdirectory(work_directory = 'abc')
Sets the working directory for the executable.
- Parameters:
work_directory – String parameter