Hello ES,
You can use pages(). See: https://docs.originlab.com/originpro/classoriginpro_1_1pe_1_1Folder.html
Example to print the workbook names in the project:
for wb in op.pages('w'):
print(wb.lt_range())
It will list them in the order present in the Project Explorer.
Best,
Chao