在做python自动化测试,编写unittest框架运行代码的时候不执行

在做python自动化测试,编写unittest框架运行代码的时候不执行

1、问题出在哪?

在编写自动化测试脚本的时候:

import unittest
from selenium import webdriver
from login import Login
import time

class hotelmap(unittest.TestCase):

    def setUp(self):
        self.driver = webdriver.Firefox()
        self.driver.implicitly_wait(10)
        self.driver.get('http://localhost:8080/hotel/#/login')

    def map(self):
    ......

这样是不执行的,要在map前面加test才可以。
如图:

import unittest
from selenium import webdriver
from login import Login
import time

class hotelmap(unittest.TestCase):

    def setUp(self):
        self.driver = webdriver.Firefox()
        self.driver.implicitly_wait(10)
        self.driver.get('http://localhost:8080/hotel/#/login')

    def testmap(self):
    ......

你可能感兴趣的:(python,自动化测试)