zoukankan      html  css  js  c++  java
  • Selenium系列(八)

    如果你还想从头学起Selenium,可以看看这个系列的文章哦!

    https://www.cnblogs.com/poloyy/category/1680176.html

    其次,如果你不懂前端基础知识,需要自己去补充哦,博主暂时没有总结(虽然我也会,所以我学selenium就不用复习前端了哈哈哈...)

    截图操作

    • 截取整个页面
    • 截取指定元素

    只有两个方法,比较简单,直接上代码

    # !/usr/bin/env python
    # -*- coding: utf-8 -*-
    
    """
    __title__  =
    __Time__   = 2020/3/25 17:52
    __Author__ = 小菠萝测试笔记
    __Blog__   = https://www.cnblogs.com/poloyy/
    """
    
    from selenium import webdriver
    
    driver = webdriver.Chrome("../resources/chromedriver.exe")
    
    driver.get("https://www.baidu.com")
    driver.maximize_window()
    
    # 截取整个页面
    driver.get_screenshot_as_file("test.png")
    driver.save_screenshot("tests.png")
    
    # 找到搜索框
    inputElement = driver.find_element_by_id("kw")
    
    # 截取搜索框元素
    inputElement.screenshot("inputElement.png")

    知识点

    • get_screenshot_as_file()、save_screenshot() 效果一样, save_screenshot() 最终调用的函数就是前者
    • 后缀名建议写 .png ,否则会有Warning提示
  • 相关阅读:
    多层交换概述
    多层交换MLS笔记2
    多层交换MLS笔记1
    RSTP Proposal-Agreement
    RSTP Note
    保护STP
    优化STP
    Cisco STP Note
    25、C++的顶层const和底层const
    43、如何用代码判断大小端存储
  • 原文地址:https://www.cnblogs.com/poloyy/p/12592745.html
Copyright © 2011-2022 走看看