Test

SCPI Commands

CONFigure:DATA:CONTrol:DNS:TEST:DOMain
CONFigure:DATA:CONTrol:DNS:TEST:STARt
class Test[source]

Test commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

get_domain()str[source]
# SCPI: CONFigure:DATA:CONTrol:DNS:TEST:DOMain
value: str = driver.configure.data.control.dns.test.get_domain()

Specifies the domain to be resolved during a test of the foreign DNS server.

return

domain: String specifying the URL of the domain

set_domain(domain: str)None[source]
# SCPI: CONFigure:DATA:CONTrol:DNS:TEST:DOMain
driver.configure.data.control.dns.test.set_domain(domain = '1')

Specifies the domain to be resolved during a test of the foreign DNS server.

param domain

String specifying the URL of the domain

start()None[source]
# SCPI: CONFigure:DATA:CONTrol:DNS:TEST:STARt
driver.configure.data.control.dns.test.start()

Starts a test of the foreign DNS server.

start_with_opc()None[source]
# SCPI: CONFigure:DATA:CONTrol:DNS:TEST:STARt
driver.configure.data.control.dns.test.start_with_opc()

Starts a test of the foreign DNS server.

Same as start, but waits for the operation to complete before continuing further. Use the RsCmwDau.utilities.opc_timeout_set() to set the timeout value.