>>> driver.get("
http://stockpage.10jqka.com.cn/HQ_v3.html#hs_000791")
>>> driver.find_element_by_xpath("//li[@period='daily']").click()
然后要先移动到曲线上才能出现这个 ma 信息
from selenium.webdriver.common.action_chains import ActionChains
a=driver.find_element_by_xpath('//*[@id="canvasPanel"]')
ActionChains(driver).move_to_element(a).perform()
driver.find_element_by_xpath('//*[@id="kTipma"]').text