码迷,mamicode.com
首页 > 编程语言 > 详细

Python3 Selenium自动化web测试 ==> 第八节 WebDriver高级应用 -- 结束Windows中浏览器的进程

时间:2018-06-12 22:58:35      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:pre   taskkill   ESS   web测试   自动化   odi   结束   ack   print   

学习目的:


 

  掌握WebDriver的高级应用

 

正式步骤:


 

# -*-  coding:utf-8 -*-
from selenium import webdriver
from selenium.webdriver import ActionChains
from selenium.webdriver.support.ui import Select
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import WebDriverException
import unittest
import os
import time
import traceback

class WebdriverAPI(unittest.TestCase):
    def setUp(self):
        # 每个用例都执行,在单个用例运行前执行
        #打开浏览器
        self.driver = webdriver.Chrome()

    def tearDown(self):
        #每个用例都执行,在单个用例运行后执行
        #退出浏览器
        self.driver.quit()

    def test_closeBrowserProcess(self):
        url = https://www.baidu.com/
        self.driver.get(url)
        returnCode = os.system("taskkill /F /im " + "chrome.exe")
        if returnCode == 0:
            print("chrome process over")
        else:
            print("chrome process over fail")

if __name__ == __main__:
    unittest.main()

 

Python3 Selenium自动化web测试 ==> 第八节 WebDriver高级应用 -- 结束Windows中浏览器的进程

标签:pre   taskkill   ESS   web测试   自动化   odi   结束   ack   print   

原文地址:https://www.cnblogs.com/wuzhiming/p/9164774.html

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