Commit 37d3ea38 authored by zhanhuasheng's avatar zhanhuasheng

bugfix

parent d83d8b04
from Utils.global_variate import Global
from Utils.mockData_handler import data_handler
class customerData(Global):
customer_test_name = 'autotest_customer'
customer_test_email = 'autotest_customer@gmail.com'
customer_test_phone = '13611122222'
customer_test_phone = data_handler.phone()
customer_test_note = 'autotest_note_msg'
import random
class MockData:
def phone(self):
number = '13' + str(random.randint(100000000, 999999999))
return number
data_handler = MockData()
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment