我有一个功能:
finalizers:
- foregroundDeletion
在一系列不同的功能之后,我正在使用上述功能:
def download_CSV_file():
downloadCSV=chrome.find_element_by_xpath("//*[contains(text(), 'Download file in csv format')]")
downloadCSV.click()
它给了我错误:
chrome=webdriver.Chrome()
chrome.get("https://www.nseindia.com/products/content/equities/equities/eq_security.htm")
select_symbol('YESBANK')
select_time_period('24 Months')
select_getData()
download_CSV_file()
但是,当我在Jupyter笔记本的另一个单元格中独立调用该函数时,它将完成此工作。我在这里想念什么?