FlexLogger

cancel
Showing results for 
Search instead for 
Did you mean: 

How to record multiple iterations with Flexlogger automatically?

In Flexlogger is there a option to capture multiple iterations automatically without having to start & stop the test every time in the UI application.

When trying the same using automation is it possible to capture 3 consecutive runs without closing the project after each run. Below is the sample code, could you please suggest a fix:

def launch_flexlogger(project_path=flex_project_path, log_file_base_path=daq_file_base_path,
log_file_name=daq_file_name):
"""Launch FlexLogger, open a project, start and stop the test session."""
with Application.launch() as app:
project = app.open_project(path=project_path)
# log_file_base_path = input("Enter the log file base path: ")
# log_file_name = input("Enter the log file name: ")
logging_specification = project.open_logging_specification_document()
logging_specification.set_log_file_base_path(log_file_base_path)
logging_specification.set_log_file_name(log_file_name)
test_session = project.test_session
test_session.start()
print("Test started. Press Enter to stop the test and close the project...")
# input()
time.sleep(10)
test_session.stop()
project.close()
return 0


def run_test():
print("TEST 1")
launch_flexlogger(log_file_name=daq_file_name)
print("TEST 2")
launch_flexlogger(log_file_name=daq_file_name)
print("TEST 3")
launch_flexlogger(log_file_name=daq_file_name)

 

0 Kudos
Message 1 of 2
(1,378 Views)

Any suggestions regarding How to record multiple iterations with Flexlogger automatically?

0 Kudos
Message 2 of 2
(1,308 Views)