selenium高級應用 - 結束Windows中瀏覽器的進程
阿新 • • 發佈:2019-01-31
imp ref nco code ask div lse pro ==
結束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中瀏覽器的進程