我如何通过Selenium获得股票代码?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我如何通过Selenium获得股票代码?相关的知识,希望对你有一定的参考价值。
我想从这个page抓住股票代码。
这是我的代码:
from selenium import webdriver
import pandas as pd
url = 'https://stock360.hkej.com/StockScreener/profession/tab/profile'
browser = webdriver.Chrome('C:/chromedriver_win32/chromedriver.exe')
browser.get(url)
dfs = pd.read_html(browser.page_source)
print(dfs)
browser.close()
这是输出:
dfs
[ 0
0 加入至心水組合:請先登入或註冊成為會員, Empty DataFrame
Columns: [沒有符合以上篩選條件的股票。]
Index: [], 0
0 加入至心水組合:請先登入或註冊成為會員]
我知道它是javascript,我已经使用了Selenium。为什么我不能拿到桌子?如何获得页面中的股票代码,如下所示?谢谢。
附加信息:单击链接后,从GREEN下拉列表中选择第二个,然后将显示上表。
答案
一种方法如下
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import pandas as pd
url = 'https://stock360.hkej.com/StockScreener/profession/tab/profile'
driver = webdriver.Chrome()
driver.get(url)
WebDriverWait(driver,10).until(EC.presence_of_all_elements_located((By.CSS_SELECTOR, 'option')))
# select the second dropdown option by its value attribute whose value is mb
driver.find_element_by_css_selector('[value=mb]').click()
#wait for blue button to be clickable and click
WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.CSS_SELECTOR, '[href*=submit]'))).click()
#select table
table = driver.find_element_by_css_selector('.dt960')
#transfer html of table to pandas read_html which handles tables
df = pd.read_html(table.get_attribute('outerHTML'))[0] #grab the table
df2 = df.drop(df.columns[0], axis=1).dropna(how='all') #lose the nan column and rows
df2.rename(columns=df.iloc[0], inplace = True) #set headers same as row 1
df2.drop(df.index[0], inplace = True) #lose row 1
df2.reset_index(drop=True) #re-index
print(df2)
driver.quit()
以上是关于我如何通过Selenium获得股票代码?的主要内容,如果未能解决你的问题,请参考以下文章
如何在使用selenium python切换帧时获得完整的html代码?
在 Yahoo! 上通过“data-reactid”查找元素金融[关闭]
如何使用 Binance API,通过股票代码简单 GET 价格
python下用selenium的webdriver包如何取得打开页面的html源代码呢
Selenium Xpath元素无法定位 NoSuchElementException: Message: no such element: Unable to locate element(代码片段