12-04-2023 11:31 AM
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)
12-14-2023 08:51 AM
Any suggestions regarding How to record multiple iterations with Flexlogger automatically?