在實際執行自動化測試時,發現咱們的用例在使用同一個資源的操做時,用例的執行順序對測試結果有影響,在手工測試時是徹底無法覆蓋的。web
但每一次都是按用例名字來執行,怎麼打亂來執行的。dom
在網上看到一個有意思的插件,正好知足個人需求,插件就簡單介紹下給須要的人吧測試
1、安裝插件
pip install nose-randomly
2、安裝完成後,經過nosetests -h能夠看到下面的,說明安裝成功了3d
3、使用code
默認是按時間來作爲隨機種子來打亂用例順序的,也能夠本身定義種子,但這個我不需求blog
來使用下這個代碼測試下ip
#coding:utf-8 ''' Created on 2018年8月28日 @author: huzq ''' from nose.tools import assert_in from unittest import TestCase from PIL import Image, ImageDraw, ImageFont from allure.constants import AttachmentType import sys from selenium import webdriver from nose.tools import set_trace import nose from nose.plugins.attrib import attr aa="priority" class test_aaa(TestCase): #aa="priority=3" def setUp(self): #pass #self.web_driver = webdriver.Firefox() #self.web_driver.get("http://www.baidu.com") self.addCleanup(self.aa) #assert 1==2 def aa(self): #set_trace() print "xxxxxxxxxxxxx" @attr("priority3") def test_qqq(self): u'afdfdfa' print "1111" @attr("priority2") @attr("priority3") def test_fff(self): print "2222" def tearDown(self): print "tearDwon"
使用utf-8