Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

powerbi - Update PBI by Python

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...