day3 接口和selenium基础

selenium基础

01 . selenium基本用法

  • 创建一个浏览器对象

    from selenium.webdriver import Chrome
    from bs4 import BeautifulSoup
    from re import search
    
    b = Chrome()
    
  • 打开网页

    b.get('https://cd.zu.anjuke.com/?from=navigation')
    
  • 获取网页数据(能获取到的数据一定是网页加载出来数据)

    # print(b.page_source)
    result = b.page_source
    
  • 解析

    soup = BeautifulSoup(result, 'lxml')
    all_house_div = soup.select('#list-content>.zu-itemmod')
    for house in all_house_div:
        title = house.select_one('.strongbox').text
        message = house.select_one('.details-item').text
        area = search(r'\|(.+?)\|', message).group(1)
        price = house.select_one('.zu-side>p').text
    

02 . selenium控制网页

 from selenium.webdriver import Chrome
 from selenium.webdriver.common.keys import Keys
 import time
 
 b = Chrome()
 b.get('https://www.jd.com/')
  • 自动在输入框中输入内容

    1. 获取页面上的输入框

      search_box = b.find_element_by_id('key')
      
    2. 向输入框中输入内容

      search_box.send_keys('酸奶')
      
    3. 按回车

      search_box.send_keys(Keys.ENTER)
      
    4. 按搜索键

      • 找到搜索按钮

        search_btn = b.find_element_by_css_selector('.button')
        
      • 点击按钮

        search_btn.click()
        time.sleep(1)
        print(b.page_source)
        
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值