簡體   English   中英

Python ttk 組合框值更新?

[英]Python ttk combobox value update?

我將 GUI 用於一些帶有 selenium 的 Web 自動化。 我有幾個組合框(將在這里做一個例子)

這是我的示例代碼:

app = Tk()


def callback(*args): # should get the updated values in Combobox ?
    global v_sv_league
    v_sv_league = str(sv_league.get())


#List to be filled by scraper
li_leagues = []

#StringVar
sv_league = StringVar()
sv_league.trace("w", callback)

#Label
l_d_league = tk.Label(app,text='League:',bg='#1d1b29', fg='#f8f09d',font='Tahoma 10')

#Combobox
d_league = ttk.Combobox(app,textvariable=sv_league,values=li_leagues)


#Scrape
def scrape():
       
        btn_tflist = wait.until(EC.element_to_be_clickable((By.XPATH,('/html/body/main/section/nav/button[3]'))))
        btn_tflist.click()

        btn_tf_filters = wait.until(EC.element_to_be_clickable((By.XPATH,'/html/body/main/section/section/div[2]/div/div/div[2]/div[2]')))
        btn_tf_filters.click()

        bol_scrape = True
        if bol_scrape is True:
            print('\n Start scraping... this might take a few minutes. Please wait and dont press anything until trade_buddy is done!\n')

            li_leagues = []
            print('Getting leagues...\n')
            league_dropdown_menu = wait.until(EC.element_to_be_clickable((By.XPATH,('/html/body/main/section/section/div[2]/div/div[2]/div/div[1]/div[1]/div[7]/div'))))
            league_dropdown_menu.click()
            time.sleep(1)
            
            # scrape all text
            scrape_leagues = driver.find_elements_by_xpath("//li[@class='with-icon' and contains(text(), '')]")
            for league in scrape_leagues:
                export_league = league.text
                export_league = str(export_league)
                export_league = export_league.replace(',', '')
                li_leagues.append(export_league)


app.mainloop()

所以基本上這只是我代碼的一小部分,但這是我為我的一個組合框得到的。 您可以看到我將在代碼中的某個時候調用def scrape來抓取數據並填充我的列表li_leagues 但是,我的組合框沒有刷新內容並保持為空。

對於 OptionMenu 我已經設置了它(使用其他代碼)但我無法讓它與組合框一起工作。

我在這里缺少什么建議?

感謝一個插槽!

在為列表附加值后,嘗試使用這行代碼。

.....
export_league = export_league.replace(',', '')
li_leagues.append(export_league)
c_league.config(values=li_leagues)

config()方法充當更新程序,在調用時僅更新您的小部件。

希望它有一些幫助。

干杯

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM