python+selenium自動化指令碼跑完後提示TextIOWrapper資訊__python

來源:互聯網
上載者:User
自動化指令碼跑完後,提示:.<_io.TextIOWrapper name='<stderr>' mode='w' encoding='UTF-8'> 

Time Elapsed: 0:00:10.638064

指令碼能運行,並且報告也產生了。

就是有這個提示。


呼叫指令碼:

#-*- coding: utf-8 -*-import HTMLTestRunnerimport unittestfrom test_B.case_001 import Testdef suite():   onetest = unittest.TestSuite()   onetest.addTest(Test("login_test"))   return onetestif __name__ == '__main__':   filename = "D:\\Pycharm\\result\\report0.html"   fp = open(filename,"wb")   runner =HTMLTestRunner.HTMLTestRunner(stream=fp,title=u'Report_title',description=u'Report_description')   runner.run(suite())   fp.close()



用例:

# -*- coding: utf-8 -*-from selenium import webdriverfrom time import sleepimport unittestclass Test(unittest.TestCase):   def setUp(self):      self.driver = webdriver.Firefox()      self.driver.implicitly_wait(5)      self.driver.get('http://10.2.29.216:8080/kmhc-image-report-web/#/login')   def login_test(self):      self.driver.find_element_by_id('name-txt').send_keys('longtest3')      self.driver.find_element_by_id('pass-txt').send_keys('123456')      self.driver.find_element_by_xpath('/html/body/div/div/div[2]/div/div/form/div[2]/div[4]/div').click()   def tearDown(self):      # sleep(2)      sleep(3)      self.driver.close()      pass


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.