python实现selenium(股票)

微信公众号:rose1986
微信公众号:rose1986

https://github.com/roses19860321/C.git
from selenium import webdriver
import time
from selenium.webdriver.support.wait import WebDriverWait

# 版本对应
# geckodriver 0.17
# Selenium 3.4
# Firefox 52
# python3.7.1

def findElement(locator,timeout=28):
    element=WebDriverWait(web,timeout).until(lambda x:x.find_element(*locator))
    return element

def findElements(locators,timeout=28):
    elements=WebDriverWait(web,timeout).until(lambda x:x.find_elements(*locators))
    return elements

web = webdriver.Firefox()
web.get('https://hippo.gf.com.cn/#StockQuote')
# web.get('https://www.baidu.com/')

loc = ('xpath', "//div[@class='Footer button-num-1']/button[@class='MuiButtonBase-root MuiButton-root MuiButton-text']")
findElement(loc).click()

loc = ('xpath', "//div[@class='Title']/a[@class='Close']")
findElement(loc).click()

loc = ('xpath', "//span[text()='A股']")
findElement(loc).click()

loc = ('xpath', "//span[text()='换手']")
findElement(loc).click()

while 1:
    time.sleep(4)
    for i in range(20):
        txtName=web.find_element_by_xpath('//tr[@data-key='+'"'+str(i)+'"]/td[@class="name"]/span').text
        txtHandover=web.find_element_by_xpath('//tr[@data-key='+'"'+str(i)+'"]/td[@data-id="handover"]').text
        print('{}\t{}\t{}'.format(i,txtName,txtHandover))
    print('----AlmosOu----')

# txt=web.find_element_by_xpath('//tr[@data-key="1"]/td[@data-id="now"]/span')
# print(txt.text)

web.quit()


# click = web.find_element_by_link_text('地图')
# click=web.find_element_by_link_text('百度智能门户')
# click.click()
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

keene86

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值