码迷,mamicode.com
首页 > 其他好文 > 详细

UI自动化之异常与截图处理

时间:2018-09-28 00:07:10      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:功能   turn   scree   unit   没有   and   第一步   file   oal   

对操作不成功时,希望能够继续执行其他操作,或者是,希望操作不成功时,能够写日志记录

 

目录

1、常见异常

2、截图处理

 

 

1、常见异常

 

1.NoSuchElementException:没有找到元素

2.NoSuchFrameException:没有找到iframe

3.NoSuchWindowException:没找到窗口句柄handle

4.NoSuchAttributeException:属性错误

5.NoAlertPresentException:没找到alert弹出框

6.lementNotVisibleException:元素不可见

7.ElementNotSelectableException:元素没有被选中

8.TimeoutException:查找元素超时

 

2、截图处理

第一步:定义一个截图装饰器

# coding:utf-8
from selenium import webdriver
class Screen(object):
    u‘‘‘返个应该截图功能的装饰器‘‘‘
    def __init__(self, driver):
        self.driver = driver

    def __call__(self, f):
        def inner(*args):
            try:
                return f(*args)
            except:
                import time
                nowTime =time.strftime("%Y_%m_%d_%H_%M_%S")
                self.driver.get_screenshot_as_file(‘%s.jpg‘ %nowTime)
                raise
        return inner

 第二步:调用截图功能的装饰器

import unittest
class Test(unittest.TestCase):
    driver = webdriver.Firefox() # 全局参数 driver
    def setUp(self):
        self.driver.get("https://www.baidu.com")
    @Screen(driver)
    def test01(self):
        u‘‘‘返个是失败的案例‘‘‘
        self.driver.find_element_by_id("11kw").send_keys("python")
        self.driver.find_element_by_id("su").click()
    @Screen(driver)
    def test_02(self):
        u‘‘‘返个是通过的案例‘‘‘
        self.driver.find_element_by_id("kw").send_keys("yoyo")
        self.driver.find_element_by_id("su").click()
    def tearDown(self):
        self.driver.quit()
if __name__ == "__main__":
    unittest.main()

  

UI自动化之异常与截图处理

标签:功能   turn   scree   unit   没有   and   第一步   file   oal   

原文地址:https://www.cnblogs.com/weizhideweilai/p/9716080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!