代码拉取完成,页面将自动刷新
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from unittest import TestCase
import pymysql
import time
host="localhost"
user="root"
password="root"
database="finance"
# 专门处理增,删,改
def update(sql,param):
con = pymysql.connect(host=host,user=user,password=password,database=database)
cursor = con.cursor()
cursor.execute(sql,param)
con.commit()
cursor.close()
con.close()
def select(sql,param):
con = pymysql.connect(host=host,user=user,password=password,database=database)
cursor = con.cursor()
cursor.execute(sql,param)
data = cursor.fetchall()
con.commit()
cursor.close()
con.close()
return data
# 增加lisi4 lisi5 lisi6 lisi7
sql1="INSERT INTO user (id,username,password,paypwd) VALUE (%s,%s,%s,%s)"
param1=['7','lisi4','123456','666666']
param2=['8','lisi5','123456','666666']
param3=['9','lisi6','123456','null']
param4=['10','lisi7','123456','666666']
update(sql1,param1)
update(sql1,param2)
update(sql1,param3)
update(sql1,param4)
# 为lisi4 lisi5 lisi6 lisi7增加银行卡
sql2="INSERT INTO bankcard (id,cardBank,type,cardNum,userId,balance,defaultl) VALUE (%s,%s,%s,%s,%s,%s,%s)"
# lisi4
param5=['10','中国建设银行','1','1231234564561231','7','10.00','1']
param6=['11','中国建设银行','1','4567894567894567','9','10000.00','1']
param7=['12','中国农业银行','1','2345678923456789','10','10000.00','1']
param8=['13','中国建设银行','1','2342342345675676','10','10000.00','0']
param9=['14','中国建设银行','1','1234567456789456','10','10000.00','0']
update(sql2,param5)
update(sql2,param6)
update(sql2,param7)
update(sql2,param8)
update(sql2,param9)
class TestFunds(TestCase):
def testfunds1(self):
sql = "update bankcard set balance = %s where cardNum = %s"
param = ['1000000', '1234567894521312']
update(sql, param)
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID,"username").send_keys("lisi")
wd.find_element(By.ID,"password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID,"login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT,"个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT,"零钱理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH,"//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH,'//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(2)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
# 银行卡余额
sql = "select balance from bankcard where cardNum=%s"
param = ['1234567894521312']
data = select(sql, param)
self.assertEqual((data[0][0]),999900)
wd.quit()
def testfunds2(self):
sql = "update bankcard set balance = %s where cardNum = %s"
param = ['1000000', '1234567894521312']
update(sql, param)
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID,"username").send_keys("lisi")
wd.find_element(By.ID,"password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID,"login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT,"个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT,"零钱理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH,"//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH,'//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666667")
time.sleep(2)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
# 银行卡余额
sql = "select balance from bankcard where cardNum=%s"
param = ['1234567894521312']
data = select(sql, param)
self.assertEqual((data[0][0]),1000000)
wd.quit()
def testfunds3(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID,"username").send_keys("lisi4")
wd.find_element(By.ID,"password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID,"login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT,"个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT,"零钱理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH,"//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH,'//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(2)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(3)
# 银行卡余额
sql = "select balance from bankcard where cardNum=%s"
param = ['1231234564561231']
data = select(sql, param)
self.assertEqual((data[0][0]),10)
wd.quit()
def testfunds4(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID,"username").send_keys("lisi5")
wd.find_element(By.ID,"password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID,"login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT,"个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT,"零钱理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH,"//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH,'//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(2)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(2)
# 定位是否返回
result=wd.find_element(By.XPATH,"//div[@class='jconfirm-content-pane no-scroll']/div[@class='jconfirm-content']/div").text
print(result)
self.assertEqual(result,"买入失败!,请绑定银行卡")
wd.quit()
def testfunds5(self):
sql = "update bankcard set balance = %s where cardNum = %s"
param = ['1000000', '1234567894521312']
update(sql, param)
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "期限理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
# 银行卡余额
sql = "select balance from bankcard where cardNum=%s"
param = ['1234567894521312']
data = select(sql, param)
self.assertEqual((data[0][0]),995000)
wd.quit()
def testfunds6(self):
sql = "update bankcard set balance = %s where cardNum = %s"
param = ['1000000', '1234567894521312']
update(sql, param)
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "期限理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666667")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
# 银行卡余额
sql = "select balance from bankcard where cardNum=%s"
param = ['1234567894521312']
data = select(sql, param)
self.assertEqual((data[0][0]),1000000)
wd.quit()
def testfunds7(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi4")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "期限理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
result=wd.find_element(By.XPATH,"//div[@class='jconfirm-content-pane no-scroll']/div[@class='jconfirm-content']/div").text
print(result)
self.assertEqual(result,"买入失败!,银行卡余额不足")
wd.quit()
def testfunds8(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi5")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "期限理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
result=wd.find_element(By.XPATH,"//div[@class='jconfirm-content-pane no-scroll']/div[@class='jconfirm-content']/div").text
self.assertEqual(result,"买入失败!,请绑定银行卡")
wd.quit()
def testfund9(self):
sql = "update bankcard set balance = %s where cardNum = %s"
param = ['1000000', '1234567894521312']
update(sql, param)
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "基金理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
# 银行卡余额
sql = "select balance from bankcard where cardNum=%s"
param = ['1234567894521312']
data = select(sql, param)
self.assertEqual((data[0][0]),997000)
wd.quit()
def testfunds10(self):
sql = "update bankcard set balance = %s where cardNum = %s"
param = ['1000000', '1234567894521312']
update(sql, param)
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "基金理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666667")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
# 银行卡余额
sql = "select balance from bankcard where cardNum=%s"
param = ['1234567894521312']
data = select(sql, param)
self.assertEqual((data[0][0]),1000000)
wd.quit()
def testfunds11(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi4")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "基金理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
result=wd.find_element(By.XPATH,"//div[@class='jconfirm-content-pane no-scroll']/div[@class='jconfirm-content']/div").text
print(result)
self.assertEqual(result,"买入失败!,银行卡余额不足")
wd.quit()
def testfunds12(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi5")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "基金理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
result=wd.find_element(By.XPATH,"//div[@class='jconfirm-content-pane no-scroll']/div[@class='jconfirm-content']/div").text
self.assertEqual(result,"买入失败!,请绑定银行卡")
wd.quit()
def testfunds13(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi6")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "基金理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
result=wd.find_element(By.XPATH,"//div[@class='jconfirm-content-pane no-scroll']/div[@class='jconfirm-content']/div").text
self.assertEqual(result,"买入失败!,请前往个人信息设置支付密码")
wd.quit()
def testfunds14(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi7")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "基金理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
sql = "select balance from bankcard where userId=%s and defaultl = %s"
param = ['10',1]
data = select(sql, param)
self.assertEqual((data[0][0]),7000)
wd.quit()
def testfunds15(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi7")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT,"个人中心").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT,"银行卡管理").click()
time.sleep(1)
# 点击设为默认
wd.find_element(By.XPATH,"//button[@class='btn default_btn' and @default-id='13']").click()
time.sleep(1)
# 点击个人理财
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击基金理财
wd.find_element(By.LINK_TEXT, "基金理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
sql = "select balance from bankcard where userId=%s and defaultl = %s"
param = ['10',1]
data = select(sql, param)
self.assertEqual((data[0][0]),7000)
wd.quit()
def testfunds16(self):
# 创建谷歌浏览器对象
wd = webdriver.Chrome()
# 打开网址
wd.get("http://localhost:90/")
# 窗口最大化
wd.maximize_window()
# 输入框
wd.find_element(By.ID, "username").send_keys("lisi5")
wd.find_element(By.ID, "password").send_keys("123456")
# 点击登陆按钮
wd.find_element(By.ID, "login_btn").click()
time.sleep(1)
# 点击个人中心
wd.find_element(By.LINK_TEXT, "个人理财").click()
time.sleep(1)
# 点击银行卡管理
wd.find_element(By.LINK_TEXT, "基金理财").click()
time.sleep(1)
# 点击投资
wd.find_element(By.XPATH, "//button[@class='btn btn-primary btn-sm buy_btn']").click()
time.sleep(2)
# 输入密码
wd.find_element(By.XPATH, '//div[@class="layui-layer-content"]/input[@id="password"]').send_keys("666666")
time.sleep(1)
# 点击确定
wd.find_element(By.XPATH,'//div[@class="layui-layer-btn layui-layer-btn-"]/a[@class="layui-layer-btn0"]').click()
time.sleep(1)
result=wd.find_element(By.XPATH,"//div[@class='jconfirm-content-pane no-scroll']/div[@class='jconfirm-content']/div").text
self.assertEqual(result,"买入失败!,请绑定银行卡")
wd.quit()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。