selenium高级应用 - 结束Windows中浏览器的进程

Posted aszeno

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium高级应用 - 结束Windows中浏览器的进程相关的知识,希望对你有一定的参考价值。

结束Windows中浏览器的进程

#-*- coding:utf-8
#结束Windows中浏览器的进程
from selenium import webdriver
import unittest

class TestDemo(unittest.TestCase):

    def test_killWindowsProcess(self):
        #启动浏览器
        firefoxDiver = webdriver.Firefox(executable_path="C:webdriver_firefox_driver")
        import os
        #结束Firefox进程
        returnCode = os.system("taskfill/F/iM firefox.exe")
        if returnCode == 0:
            print "成功结束Firefox进程"
        else:
            print u"结束进程失败"

if __name__ == "__main__":
    unittest.main()

  

以上是关于selenium高级应用 - 结束Windows中浏览器的进程的主要内容,如果未能解决你的问题,请参考以下文章

windows下安装配置python + selenium 来驱动firefox

Windows下怎么搭建Python+Selenium的自动化环境

自动化测试:Selenium高级操作

Selenium 对于 Web UI 测试就像 ________ 对于 Windows 应用程序 UI 测试 [关闭]

如何使用 Windows 身份验证和 Firefox 运行 Selenium NUnit 测试?

SeleniumSelenium获取Network数据(高级版)