I have a script for auto update PBI (all code is here https://pastebin.com/8tJe05mt)
# Connect pywinauto
print("Identifying Power BI window")
app = Application(backend = 'uia').connect(path = PROCNAME)
win = app.window(title_re = '.*Power BI Desktop')
time.sleep(5)
win.wait("enabled", timeout = 300)
win.Save.wait("enabled", timeout = 300)
win.set_focus()
win.Home.click_input()
win.Save.wait("enabled", timeout = 300)
win.wait("enabled", timeout = 300)
But in line 52 (win.Save.wait("enabled", timeout = 300)) is problem: time out
This problem is only v Power Bi Destop.
Thanks for help.
V.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…