2020-2-19更新

This commit is contained in:
wuzushun 2020-02-19 14:17:18 +08:00
parent 1bc742299f
commit 7908dc9441
3393 changed files with 2531 additions and 191805 deletions

1
.idea/.gitignore vendored
View File

@ -1,2 +1,3 @@
# Default ignored files
/workspace.xml

View File

@ -2,12 +2,9 @@
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="jdk" jdkName="Python 3.8 (cmp_ui_test)" jdkType="Python SDK" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="PackageRequirementsSettings">
<option name="requirementsPath" value="" />
</component>
<component name="TestRunnerService">
<option name="projectConfiguration" value="pytest" />
<option name="PROJECT_TEST_RUNNER" value="pytest" />

View File

@ -2,7 +2,7 @@
<project version="4">
<component name="PublishConfigData">
<serverData>
<paths name="root@192.168.163.20:22">
<paths name="root@127.0.0.1:2222">
<serverdata>
<mappings>
<mapping local="$PROJECT_DIR$" web="/" />

View File

@ -1,12 +0,0 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="PyPep8Inspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
<inspection_tool class="PyPep8NamingInspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
<option name="processCode" value="true" />
<option name="processLiterals" value="true" />
<option name="processComments" value="true" />
</inspection_tool>
</profile>
</component>

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

View File

@ -1,4 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptSettings">
<option name="languageLevel" value="ES6" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8 (cmp_ui_test)" project-jdk-type="Python SDK" />
</project>

View File

@ -2,7 +2,7 @@
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/UItestframework.iml" filepath="$PROJECT_DIR$/.idea/UItestframework.iml" />
<module fileurl="file://$PROJECT_DIR$/.idea/cmp.iml" filepath="$PROJECT_DIR$/.idea/cmp.iml" />
</modules>
</component>
</project>

View File

@ -2,6 +2,5 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="$PROJECT_DIR$/csdp_data_dr_frame_work" vcs="Git" />
</component>
</project>

View File

@ -1,3 +0,0 @@
{
"python.pythonPath": "D:\\Env\\CMP\\Scripts\\python.exe"
}

View File

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# @Time : 2019/11/2 13:02
# @Author : mrwuzs
# @Site :
# @Site :
# @File : confRelevance.py
# @Software: PyCharm
import configparser
@ -10,10 +10,9 @@ import configparser
from public.common.log import Log
class ConfRelevance:
# 关联文件读取配置
def __init__(self, _path,title):
def __init__(self, _path, title):
self.log = Log()
self.log.info("初始化关联文件")
config = configparser.ConfigParser()
@ -28,7 +27,6 @@ class ConfRelevance:
return relevance
if __name__ == "__main__":
host = ConfRelevance("H:\\cmp\\config\\config.ini","test")
host = ConfRelevance("H:\\cmp\\config\\config.ini", "test")
print(host.get_relevance_conf())

View File

@ -1,31 +1,34 @@
#coding=utf-8
# coding=utf-8
import os
import time
from public.common.readconfig import ReadConfig
from config.readconfig import ReadConfig
# 读取配置文件
config_file_path = os.path.split(os.path.realpath(__file__))[0]
read_config = ReadConfig(os.path.join(config_file_path,'config.ini'))
read_config = ReadConfig(os.path.join(config_file_path, 'config.ini'))
# 项目参数设置
prj_path = read_config.getValue('projectConfig','project_path')
prj_path = read_config.getValue('projectConfig', 'project_path')
# 日志路径
log_path = os.path.join(prj_path, 'report', 'log')
# 截图文件路径
img_path = os.path.join(prj_path, 'report', 'image',time.strftime("%Y_%m_%d"))
img_path = os.path.join(prj_path, 'report', 'image', time.strftime("%Y_%m_%d"))
# 测试报告路径
report_path = os.path.join(prj_path, 'report', 'testreport')
# 默认浏览器
browser = 'firefox'
# 是否开启静默模式
headless = False
# 测试数据路径
data_path = os.path.join(prj_path, 'data', 'testdata')
#测试环境地址
url = read_config.getValue("env","url")
# 测试环境地址
url = read_config.getValue("env", "url")
#
xml_report_path=os.path.join(prj_path, 'report', 'xml')
xml_report_path = os.path.join(prj_path, 'report', 'xml')
html_report_path = os.path.join(prj_path, 'report', 'html')
#cookie_path
cookie_path = os.path.join(prj_path, 'data', 'cookie_data')
# cookie_path
cookie_path = os.path.join(prj_path, 'data', 'cookie_data')

View File

@ -33,10 +33,5 @@ class ReadConfig:
def getValue(self, env, name):
"""
[projectConfig]
project_path=E:/Python-Project/UItestframework
:param env:[projectConfig]
:param name:project_path
:return:E:/Python-Project/UItestframework
"""
return self.cf.get(env, name)

View File

@ -7,7 +7,7 @@
# @Software: PyCharm
import allure
from public.pages import dataCenterPage
from public.pages import datacenterpage
from public.common import log
@ -15,7 +15,7 @@ class DataCenterAction(object):
def __init__(self, driver):
self.dr = driver
self.dcPg = dataCenterPage.DataCenterPage(self.dr)
self.dcPg = datacenterpage.DataCenterPage(self.dr)
self.log = log.Log()
@allure.step("选择资源类型")

View File

@ -55,8 +55,10 @@ if __name__ == '__main__':
from config import globalparam
dr = pyselenium.PySelenium(globalparam.browser)
dr.max_window()
login = Login(dr).login("上海管理员", "1qaz!QAZ")
login = Login(dr).login("hubei01", "1qaz!QAZ")
cookies = dr.origin_driver.get_cookies()
jsonCookies = json.dumps(cookies)
with open('cookies.json', 'w') as f:
cookie_path = globalparam.cookie_path + "\\cookies.json"
with open(cookie_path, 'w') as f:
print(jsonCookies)
f.write(jsonCookies)

View File

@ -0,0 +1,111 @@
# -*- coding: utf-8 -*-
# @Time : 2020/2/12 15:39
# @Author : mrwuzs
# @Email : mrwuzs@outlook.com
# @File : networkaction.py
# @Software: PyCharm
import allure
from time import sleep
from public.pages import auth_project_page
from public.pages import networkpage
from public.common import log
class PojectNetwork(object):
def __init__(self, driver):
self.dr = driver
self.netpage = networkpage.NetwoekPage(self.dr)
self.projectpage = auth_project_page.AuthProjectPage(self.dr)
self.log = log.Log()
def into_network_page(self,projectname):
self.projectpage.open_authproject()
self.projectpage.input_and_search_project(projectname)
self.projectpage.click_project_network_button()
def create_network(self,ipversion,networkname,vlan,gateway,netmask,tag,dhcp=True,vdc=None,vpool=None):
self.netpage.click_new_create_button()
if vdc:
pass
if vpool:
pass
if ipversion == "4":
self.netpage.click_ipv4_button()
elif ipversion == "6":
self.netpage.click_ipv6_button()
else:
self.log.error("ipversion %s is not found"%ipversion)
self.netpage.click_vlan_input_box()
self.netpage.input_text_new_create()
self.netpage.input_network_name(networkname)
self.netpage.input_vlan(vlan)
self.netpage.input_gateway(gateway)
self.netpage.input_netmask(netmask)
self.netpage.inpute_tag(tag)
if dhcp:
self.netpage.click_enable_dhcp()
self.netpage.click_save_button()
def delete_network(self,networkname):
pass
# self.netpage.selet
def create_subnet(self):
pass
def delete_subnet(self,subnetname):
"""
根据子网名称删除子网
:param subnetname:
:return:
"""
self.netpage.select_subnet(subnetname)
self.netpage.click_delete_subnet_button()
self.netpage.click_commit_delsubnet_button()
def is_subnet_in_network(self,networkname):
"""
判断该网络下是否存在子网
:param networkname:
:return: True/False
"""
self.netpage.select_network(networkname)
self.netpage.click_subnet_button()
if __name__ == '__main__':
from public.common import pyselenium
from config import globalparam
from public.appmodel.loginaction import Login
dr = pyselenium.PySelenium(globalparam.browser)
dr.max_window()
login = Login(dr).login("hubei01", "1qaz!QAZ")
import time
time.sleep(2)
dr.open("http://192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects")
net = PojectNetwork(dr)
net.into_network_page("湖北")
# net.create_network("4","test_netwrok_2014","2014","192.167.0.22","255.255.255.0","123")
netpage = networkpage.NetwoekPage(dr)
netpage.select_network("test_netwrok_2014")
time.sleep(2)
netpage.click_subnet_button()
js = "document.getElementsByTagName('tbody')"
dr.js(js)

View File

@ -9,7 +9,7 @@
import allure
from time import sleep
from public.pages import dataCenterPage
from public.pages import datacenterpage
from public.common import log
from public.appmodel import datacenteraction

View File

@ -0,0 +1,58 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2019/10/24 15:19
# @Author : mrwuzs
# @Site :
# @File : useraction.py
# @Software: PyCharm
import allure
from time import sleep
from public.pages import authProductPage
from public.common import log
class ProductAction(object):
def __init__(self, driver):
self.dr = driver
self.productpage = authProductPage.AuthProductPage(self.dr)
self.log = log.Log()
def create_productclassify(
self,
cname,
cnum,
description):
with allure.step("创建产品分类"):
allure.attach("分类名称:%s" % cname)
allure.attach("描述:%s" % description)
self.productpage.open_authProduct()
sleep(2)
self.productpage.click_crate_product_classify_button()
self.productpage.input_clssifyname(cname)
self.productpage.input_classifynum(cnum)
self.productpage.click_select_classify_button()
# self.productpage.click_select_classify_menu_button()
self.productpage.click_assure_button()
self.productpage.input_description(description)
self.productpage.click_new_product_classify_save_button()
if __name__ == '__main__':
from public.common import pyselenium
from config import globalparam
from public.appmodel.loginaction import Login
dr = pyselenium.PySelenium(globalparam.browser)
dr.max_window()
login = Login(dr).login("系统管理员", "123456")
#
product = ProductAction(dr)
product.create_productclassify("123","1","234")
# # user.create_user("河南","wuzs0001","wuzs0001","1qaz!QAZ","1qaz!QAZ","wzs@qq.com")
# user.create_tenant_user("wuzs_auto01", "wuzs_teant_0001", "wuzs_teant_0001", "1qaz!QAZ", "1qaz!QAZ", "wzs@qq.com")
# user.allocation_domain_administrator("河南","wuzs0001")
#

View File

@ -8,14 +8,14 @@
import allure
from time import sleep
from public.pages import authProjectPage
from public.pages import auth_project_page
from public.common import log
class PojectAction(object):
def __init__(self, driver):
self.dr = driver
self.propg = authProjectPage.AuthProjectPage(self.dr)
self.propg = auth_project_page.AuthProjectPage(self.dr)
self.log = log.Log()
def create_project(self, tenantname, projectname, projectdesc):
@ -48,6 +48,46 @@ class PojectAction(object):
sleep(0.5)
self.propg.click_project_delete_success_button()
def assign_admin_user_for_project(self,projectname,username):
"""
给项目分配管理用户
:param projectname:
:param username:
:return:
"""
self.propg.open_authproject()
self.propg.input_and_search_project(projectname)
sleep(1)
self.propg.click_project_name_button(projectname)
self.propg.click_universal_role()
self.propg.click_user_button()
self.propg.click_select_user_button()
sleep(1)
self.propg.click_admin_user_button()
self.propg.input_serach_user_box(username)
sleep(1)
self.propg.click_pitch_on_user()
self.propg.click_common_confirm_button()
def cancel_s_authorization(self,projectname,username):
"""
用户的授权
:param projectname:
:param username:
:return:
"""
self.propg.open_authproject()
self.propg.input_and_search_project(projectname)
sleep(1)
self.propg.click_project_name_button(projectname)
self.propg.click_universal_role()
self.propg.click_user_button()
self.propg.click_serach_user_box_user_info(username)
self.propg.click_common_remove_button()
self.propg.click_common_confirm_button_tag_a()
if __name__ == '__main__':
from public.common import pyselenium
@ -56,7 +96,10 @@ if __name__ == '__main__':
dr = pyselenium.PySelenium(globalparam.browser)
dr.max_window()
login = Login(dr).login("wuzs_auto_0001", "1qaz!QAZ")
login = Login(dr).login("系统管理员", "123456")
pa = PojectAction(dr)
# pa.create_project("wuzs_tenant_auto_001","wuzs_auto01_project","wuzs_auto")
pa.delete_project("wuzs_auto01_project")
# pa.assign_admin_user_for_project("湖北","hubei01")
pa.cancel_s_authorization("湖北","hubei01")
sleep(10)
dr.quit()

View File

@ -8,14 +8,14 @@
import allure
from time import sleep
from public.pages import authTenantPage
from public.pages import auth_tenant_page
from public.common import log
class TenantAction(object):
def __init__(self, driver):
self.dr = driver
self.tenantpg = authTenantPage.AuthTenantPage(self.dr)
self.tenantpg = auth_tenant_page.AuthTenantPage(self.dr)
self.log = log.Log()
def create_tenant(self, tenantname, linkmanname, linkmanphoneno):

View File

@ -24,6 +24,7 @@ def get_cookie(username, password):
def add_cookie(dr):
dr.origin_driver.delete_all_cookies()
print(cookie_path)
with open(cookie_path, 'r', encoding='utf-8') as f:
listCookies = json.loads(f.read())
for cookie in listCookies:

View File

@ -8,6 +8,7 @@
import codecs
import os
import xlrd
import chardet
from config import globalparam
data_path = globalparam.data_path
@ -22,8 +23,11 @@ def get_xls_to_dict(xlsname, sheetname):
datapath = os.path.join(data_path, xlsname)
xls1 = xlrd.open_workbook(datapath)
table = xls1.sheet_by_name(sheetname)
dataresult = [table.row_values(i) for i in range(0, table.nrows)]
# 将list转化成dict
result1 = [dict(zip(dataresult[0], dataresult[i]))
for i in range(1, len(dataresult))]
keys = []
@ -64,4 +68,4 @@ if __name__ == '__main__':
# res = get_xls_to_list('tenantdata.xlsx','Sheet1')
res = get_xls_to_dict('tenantdata.xlsx', 'Sheet1')
print(res)
print(res[0]["linkmanphoneno"])
print(res["创建运营部门"])

View File

@ -474,6 +474,46 @@ class PySelenium(object):
"{0} send the key esc, Spend {1} seconds".format(
success, time.time() - t1))
def backspace(self,css):
"""
send esc key
:return:
"""
t1 = time.time()
try:
self.element_wait(css)
el = self.get_element(css)
el.send_keys(Keys.BACK_SPACE)
self.my_print(
"{0} BACK_SPACE element: <{1}>, Spend {2} seconds".format(
success, css, time.time() - t1))
except Exception :
self.my_print(
"{0} Unable to BACK_SPACE element: <{1}>, Spend {2} seconds".format(
fail, css, time.time() - t1))
# t1 = time.time()
# ActionChains(self.driver).send_keys(Keys.BACK_SPACE).perform()
# self.my_print(
# "{0} send the key esc, Spend {1} seconds".format(
# success, time.time() - t1))
def sendkey(self,css,value):
"""
send esc key
:return:
"""
t1 = time.time()
try:
self.element_wait(css)
el = self.get_element(css)
el.send_keys(Keys.NUMPAD0)%value
self.my_print(
"{0} BACK_SPACE element: <{1}>, Spend {2} seconds".format(
success, css, time.time() - t1))
except Exception :
self.my_print(
"{0} Unable to BACK_SPACE element: <{1}>, Spend")
def js(self, script):
"""
Execute JavaScript scripts.

View File

@ -0,0 +1,53 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2019/10/24 19:52
# @Author : mrwuzs
# @Site :
# @File : authUserPage.py
# @Software: PyCharm
from public.pages import basepage
from config import globalparam
from time import sleep
class AuthProductPage(basepage.Page):
def open_authProduct(self):
self.log.debug("打开产品分类管理页面")
self.dr.open(
globalparam.url +
"/csdp/manage/#/manage-view/adminManage/folder/prodCateg")
def click_crate_product_classify_button(self):
self.log.debug("点击创建产品分类按钮")
self.dr.click("xpath->(//button[@type='button'])[10]")
def input_clssifyname(self, value):
self.log.debug("输入分类名称")
self.dr.clear_type("xpath->//div/div/div[2]/div/input", value)
def input_classifynum(self, value):
self.log.debug("输入分类序号")
self.dr.clear_type("xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div/div[1]/div[1]/div[2]/form/div[1]/div/div[3]/div/input", value)
def click_select_classify_button(self):
self.log.debug("点击选择产品分类图标按钮")
self.dr.click("xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div/div[1]/div[1]/div[2]/form/div[1]/div/div[4]/div/div/span/button")
def click_select_classify_menu_button(self, value):
self.log.debug("选择产品分类图标")
self.dr.click("xpath->/html/body/div[4]/div/div[2]/div/ul/li[2]/i")
def click_assure_button(self):
self.log.debug("点击确定按钮")
self.dr.click("xpath->/html/body/div[4]/div/div[3]/div/button[1]")
def input_description(self, value):
self.log.debug("输入描述")
self.dr.clear_type(
"/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div/div[1]/div[1]/div[2]/form/div[1]/div/div[5]/div/textarea",value)
def click_new_product_classify_save_button(self):
self.log.debug("点击保存按钮")
self.dr.click("xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div/div[1]/div[1]/div[2]/form/div[2]/div/div/button[1]")

View File

@ -3,7 +3,7 @@
# @Time : 2019/10/25 9:52
# @Author : mrwuzs
# @Site :
# @File : authProjectPage.py
# @File : auth_project_page.py
# @Software: PyCharm
from public.pages import basepage
from config import globalparam
@ -52,7 +52,7 @@ class AuthProjectPage(basepage.Page):
def input_and_search_project(self, value):
self.log.debug("搜索项目名称")
self.dr.type_and_enter(
"xpath->//div[@class='table-toolbar']/div/div//form/div/div/input", value)
"xpath->//div/div/div/div/div/div/div/div/form/div/div/input", value)
def click_project_more_button(self):
self.log.debug("点击更多按钮")
@ -65,3 +65,49 @@ class AuthProjectPage(basepage.Page):
def click_project_delete_success_button(self):
self.log.debug("点击确定按钮")
self.dr.click("xpath->//a[contains(.,'确定')]")
def click_project_network_button(self):
self.log.debug("点击网络按钮")
self.dr.click("xpath->//button[contains(.,'网络')]")
def click_project_name_button(self,value):
self.log.debug("单击项目名称按钮")
self.dr.click("xpath->//td[contains(.,'%s')]/div/a"%value)
def click_universal_role(self):
self.log.debug("单击通用角色按钮")
self.dr.click("xpath->//a[contains(text(),'通用角色1')]")
def click_user_button(self):
self.log.debug("单击用户按钮")
self.dr.click("xpath->//button[contains(.,'用户')]")
def click_select_user_button(self):
self.log.debug("单击选择用户按钮")
self.dr.click("xpath->//button[contains(.,'选择用户')]")
#添加用户
def click_admin_user_button(self):
self.log.debug("单击管理用户")
self.dr.click("xpath->//a[contains(text(),'管理用户')]")
def input_serach_user_box(self,value):
"""点击选择用户后的页面"""
self.log.debug("查询用户:%s"%value)
self.dr.type_and_enter("xpath->(//input[@type='search'])[7]",value)
def click_pitch_on_user(self):
self.log.debug("选中用户")
self.dr.click("xpath->//div[@id='addUserModal']/div[2]/div/form/table-component/div/table/thead/tr/th/div/span")
#移除用户
def click_serach_user_box_user_info(self,value):
"""角色 项目角色(通用) 的用户信息页面的输入框"""
self.log.debug("查询用户:%s"%value)
self.dr.type_and_enter("xpath->(//input[@type='search'])[4]",value)
def click_remove_button(self):
"""操作下的移除按钮"""
self.log.debug("点击移除按钮")
self.dr.click("")

View File

@ -3,7 +3,7 @@
# @Time : 2019/10/24 19:29
# @Author : mrwuzs
# @Site :
# @File : authTenantPage.py
# @File : auth_tenant_page.py
# @Software: PyCharm
from public.pages import basepage

View File

@ -31,6 +31,10 @@ class Page(object):
globalparam.url +
"/csdp/portal/#/resourceOverview")
def open_project_view(self):
self.log.debug("打开项目视图")
self.dr.click()
def move_to_el_icon_right(self):
self.log.debug("鼠标悬停到下拉按钮")
self.dr.move_to_element("xpath->//div[@id='app']/section/header/div/div/div[3]/div[3]/span/i")
@ -38,3 +42,16 @@ class Page(object):
def click_logout_button(self):
self.log.debug("点击退出按钮")
self.dr.click("xpath->//ul/li[text()='退出']")
def click_common_confirm_button(self):
self.log.debug("单击确定按钮")
self.dr.click("xpath->//button[contains(.,'确定')]")
def click_common_remove_button(self):
self.log.debug("单击移除按钮")
self.dr.click("xpath->//button[contains(.,'移除')]")
def click_common_confirm_button_tag_a(self):
self.log.debug("单击确定按钮")
self.dr.click("xpath->//a[contains(.,'确定')]")

View File

@ -3,7 +3,7 @@
# @Time : 2019/10/24 8:43
# @Author : mrwuzs
# @Site :
# @File : dataCenterPage.py
# @File : datacenterpage.py
# @Software: PyCharm
from public.pages import basepage
from config import globalparam

View File

@ -0,0 +1,97 @@
# -*- coding: utf-8 -*-
# @Time : 2020/2/10 14:42
# @Author : mrwuzs
# @Email : mrwuzs@outlook.com
# @File : prodcategpage.py
# @Software: PyCharm
import allure
from public.pages import basepage
from config import globalparam
class FolderPgae(basepage.Page):
pass
class ProdCateg(FolderPgae):
"""产品分类"""
@allure.step("服务目录-产品分类页面")
def open_prod_catg_page(self):
self.log.debug("打开服务目录-产品分类页面")
self.dr.open(globalparam.url + "/csdp/manage/#/manage-view/adminManage/folder/prodCateg")
@allure.step("点击新建按钮")
def click_new_create_button(self):
self.log.debug("点击新建按钮")
self.dr.click("xpath=//button[contains(.,'新建')]")
#新建产品分类
@allure.step("")
def input_systematic_name(self,value):
self.log.debug("输入分类名称")
self.dr.type_and_enter("xpath=//input[@name='name']",value)
def input_systematic_number(self,value):
self.log.debug("输入分类序号")
self.dr.type_and_enter("xpath=//input[@name='id']",value)
def click_produc_category_icon(self):
self.log.debug("点击产品分类图标")
self.dr.click("xpath=//button[contains(.,'选择产品分类图标')]")
def click_cloud_host(self):
self.log.debug("点击云主机图标")
self.dr.click("xpath=//li[contains(.,'云主机')]")
def click_cloud_disk(self):
self.log.debug("点击云磁盘图标")
self.dr.click("xpath=//li[contains(.,'云磁盘')]")
def click_bare_metal_server_icon(self):
self.log.debug("点击裸金属服务器图标")
self.dr.click("")
def click_commit_button(self):
self.log.debug("点击确认按钮")
self.dr.click("xpath->//a[contains(.,'确定')]")
def click_cancel_button(self):
self.log.debug("点击取消按钮")
self.dr.click("xpath->//a[contains(.,'取消')]")
def input_describ(self,value):
self.log.debug("输入描述")
self.dr.type_and_enter("xpath=//div[5]/div/textarea",value)
def click_submit_button(self):
self.log.debug("点击保存按钮")
self.dr.click("xpath=//button[@type='submit']")
def click_create_page_cancel_button(self):
self.log.debug("点击取消按钮")
self.dr.click("xpath->//a[contains(.,'取消')]")
class ProductManagePage(FolderPgae):
@allure.step("打开产品管理页面")
def open_product_manage_page(self):
pass
#操作系统管理
class OperationSystemPage(FolderPgae):
@allure.step("打开:服务目录-操作系统管理")
def open_operation_sys_page(self):
self.log.debug("打开操作系统管理页面")
self.dr.open(globalparam.url+ "/csdp/manage/#/manage-view/adminManage/folder/operationsystem")
@allure.step("点击新建按钮")
def click_new_create_button(self):
self.log.debug("点击新建按钮")
self.dr.click("xpath=//button[contains(.,'新建')]")
#
# @allure.step("")

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2019/10/23 15:37
# @Author : mrwuzs
# @Author : mrwuzsmn,
# @Site :
# @File : menuPage.py
# @Software: PyCharm
@ -16,3 +16,10 @@ class MenuPage(basepage.Page):
def click_res_node_mag(self):
self.dr.click("xpath -> //li[contains(.,'资源节点管理')]")
def move_to_project_view_button(self):
self.log.debug("")
self.dr.move_to_element("xpath=//li[contains(.,'项目视图')]")

View File

@ -0,0 +1,99 @@
# -*- coding: utf-8 -*-
# @Time : 2020/2/12 14:12
# @Author : mrwuzs
# @Email : mrwuzs@outlook.com
# @File : networkpage.py
# @Software: PyCharm
import allure
from public.pages import basepage
from config import globalparam
class NetwoekPage(basepage.Page):
def click_new_create_button(self):
self.log.debug("点击新建网络按钮")
self.dr.click("xpath->//button[contains(.,'新建')]")
def click_ipv4_button(self):
self.log.debug("点击ipv4按钮")
self.dr.click("xpath->//button[contains(.,'4')]")
def click_ipv6_button(self):
self.log.debug("点击ipv6按钮")
self.dr.click("xpath->//button[contains(.,'6')]")
def input_network_name(self,value):
self.log.debug("填写网络名称")
self.dr.type("xpath->//input[@id='networkName']",value)
def click_vlan_input_box(self):
self.log.debug("点击vlan输入框")
self.dr.click("xpath->//div[@id='addNet_modal']/div[2]/form/div/div[7]/div/div/div/span")
def input_text_new_create(self):
self.log.debug("vlan选择选择新建")
self.dr.type_and_enter("xpath->(//input[@type='search'])[7]","新建")
def input_vlan(self,value):
self.log.debug("输入vlan")
self.dr.type("xpath->//input[@name='vlanId']",value)
def input_gateway(self,value):
self.log.debug("输入网关")
# js = "$('[name=gateway]').val('%s')"%value
#
#由于无法触发IP地址采取这种方式激活事件
value1 = value+"1"
js = "document.getElementsByName('gateway')[0].value = '%s'"%value1
self.dr.js(js)
self.dr.backspace("xpath->//input[@name='gateway']")
def input_netmask(self,value):
self.log.debug("输入子网掩码")
js = "document.getElementsByName('netmask')[0].value = '%s'" % value
self.dr.js(js)
self.dr.click("xpath->//input[@name='netmask']")
self.dr.type("xpath->//input[@name='netmask']","1")
self.dr.backspace("xpath->//input[@name='netmask']")
def inpute_tag(self,value):
self.log.debug("输入网络标签")
self.dr.type("xpath->(//input[@type='text'])[25]",value)
def click_enable_dhcp(self):
self.log.debug("点击开启dhcp")
self.dr.click("xpath->//div[@id='addNet_modal']/div[2]/form/div/div[12]/div/div/span")
def click_save_button(self):
self.log.debug("点击保存按钮")
self.dr.click("xpath->//div[@id='addNet_modal']/div[3]/button")
def select_network(self,value):
self.log.debug("查询网络-by-name")
self.dr.type_and_enter("xpath->(//input[@type='text'])[12]",value)
def click_subnet_button(self):
self.log.debug("单击子网按钮")
self.dr.click("xpath->//button[contains(.,'子网')]")
#子网页面
def select_subnet(self,value):
self.log.debug("通过名称查询子网")
self.dr.type_and_enter("xpath=(//input[@type='text'])[12]",value)
# def
def click_delete_subnet_button(self):
self.log.debug("单击删除子网按钮")
self.dr.click("xpath->//button[contains(.,' 删除')]")
def click_commit_delsubnet_button(self):
self.log.debug("点击删除确认按钮")
self.dr.click("xpath->//a[contains(.,'确定')]")

View File

@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
# @Time : 2020/2/11 15:36
# @Author : mrwuzs
# @Email : mrwuzs@outlook.com
# @File : sysimagepage.py
# @Software: PyCharm
import allure
from public.pages import basepage
from config import globalparam
class SysimagePage(basepage.Page):
def open_sys_image(self):
self.log.debug("打开镜像管理页面")
self.dr.open(globalparam.url + "/csdp/manage/#/manage-view/resource/sys_image")

View File

@ -1,27 +1,27 @@
"Epic","Feature","Story","FAILED","BROKEN","PASSED","SKIPPED","UNKNOWN"
"","用户管理","删除域用户","0","0","1","0","0"
"","用户管理","创建运营部门下的用户","0","0","1","0","0"
"","资源节点管理","删除资源节点","0","0","1","0","0"
"","用户管理","创建用户","0","0","1","0","0"
"","资源同步","同步物理资源","0","0","1","0","0"
"","域管理","移除域管理员","0","0","1","0","0"
"","VPOOL管理","删除VPOOL","0","0","1","0","0"
"","资源节点管理","创建资源节点","0","0","1","0","0"
"","资源节点管理","创建opentack服务","0","0","1","0","0"
"","资源节点管理","创建VMware服务","0","0","1","0","0"
"","项目管理","创建项目","0","0","1","0","0"
"","VDC管理","删除VDC","0","0","1","0","0"
"","资源节点管理","VMware删除endpint","0","0","1","0","0"
"","资源节点管理","openstack创建endpoint","0","0","1","0","0"
"","资源节点管理","删除VMware服务","0","0","1","0","0"
"","用户管理","删除运营部门下的用户","0","0","1","0","0"
"","运营部门管理","创建运营部门","0","0","1","0","0"
"","VDC管理","创建vdc","0","0","1","0","0"
"","资源节点管理","删除openstack服务","0","0","1","0","0"
"","登录模块","系统管理员登录系统","0","0","1","0","0"
"","域管理","域添加域管理员","0","0","1","0","0"
"","项目管理","删除项目","0","0","1","0","0"
"","VPOOL管理","创建VPOOL","0","0","1","0","0"
"","资源节点管理","删除VMware服务","0","1","0","0","0"
"","用户管理","创建运营部门下的用户","0","0","1","0","0"
"","用户管理","删除域用户","0","0","1","0","0"
"","资源同步","同步物理资源","0","0","1","0","0"
"","VDC管理","删除VDC","0","0","1","0","0"
"","域管理","移除域管理员","0","0","1","0","0"
"","资源节点管理","删除资源节点","0","1","0","0","0"
"","VPOOL管理","删除VPOOL","0","0","1","0","0"
"","用户管理","删除运营部门下的用户","0","0","1","0","0"
"","登录模块","系统管理员登录系统","0","0","1","0","0"
"","资源节点管理","创建VMware服务","0","0","1","0","0"
"","资源节点管理","VMware创建endpoint","0","0","1","0","0"
"","资源节点管理","创建资源节点","0","0","1","0","0"
"","用户管理","创建用户","0","0","1","0","0"
"","VDC管理","创建vdc","0","0","1","0","0"
"","资源节点管理","openstack删除endpoint","0","0","1","0","0"
"","项目管理","创建项目","0","0","1","0","0"
"","域管理","域添加域管理员","0","0","1","0","0"
"","资源节点管理","VMware删除endpint","0","0","1","0","0"
"","运营部门管理","创建运营部门","0","0","1","0","0"
"","资源节点管理","创建opentack服务","0","0","1","0","0"
"","资源节点管理","删除openstack服务","0","0","1","0","0"
"","项目管理","删除项目","0","0","1","0","0"
"","运营部门管理","删除运营部门","0","0","1","0","0"

1 Epic Feature Story FAILED BROKEN PASSED SKIPPED UNKNOWN
用户管理 删除域用户 0 0 1 0 0
用户管理 创建运营部门下的用户 0 0 1 0 0
资源节点管理 删除资源节点 0 0 1 0 0
用户管理 创建用户 0 0 1 0 0
资源同步 同步物理资源 0 0 1 0 0
域管理 移除域管理员 0 0 1 0 0
VPOOL管理 删除VPOOL 0 0 1 0 0
资源节点管理 创建资源节点 0 0 1 0 0
资源节点管理 创建opentack服务 0 0 1 0 0
资源节点管理 创建VMware服务 0 0 1 0 0
项目管理 创建项目 0 0 1 0 0
VDC管理 删除VDC 0 0 1 0 0
资源节点管理 VMware删除endpint 0 0 1 0 0
2 资源节点管理 openstack创建endpoint 0 0 1 0 0
资源节点管理 删除VMware服务 0 0 1 0 0
用户管理 删除运营部门下的用户 0 0 1 0 0
运营部门管理 创建运营部门 0 0 1 0 0
VDC管理 创建vdc 0 0 1 0 0
资源节点管理 删除openstack服务 0 0 1 0 0
登录模块 系统管理员登录系统 0 0 1 0 0
域管理 域添加域管理员 0 0 1 0 0
项目管理 删除项目 0 0 1 0 0
3 VPOOL管理 创建VPOOL 0 0 1 0 0
4 资源节点管理 删除VMware服务 0 1 0 0 0
5 用户管理 创建运营部门下的用户 0 0 1 0 0
6 用户管理 删除域用户 0 0 1 0 0
7 资源同步 同步物理资源 0 0 1 0 0
8 VDC管理 删除VDC 0 0 1 0 0
9 域管理 移除域管理员 0 0 1 0 0
10 资源节点管理 删除资源节点 0 1 0 0 0
11 VPOOL管理 删除VPOOL 0 0 1 0 0
12 用户管理 删除运营部门下的用户 0 0 1 0 0
13 登录模块 系统管理员登录系统 0 0 1 0 0
14 资源节点管理 创建VMware服务 0 0 1 0 0
15 资源节点管理 VMware创建endpoint 0 0 1 0 0
16 资源节点管理 创建资源节点 0 0 1 0 0
17 用户管理 创建用户 0 0 1 0 0
18 VDC管理 创建vdc 0 0 1 0 0
19 资源节点管理 openstack删除endpoint 0 0 1 0 0
20 项目管理 创建项目 0 0 1 0 0
21 域管理 域添加域管理员 0 0 1 0 0
22 资源节点管理 VMware删除endpint 0 0 1 0 0
23 运营部门管理 创建运营部门 0 0 1 0 0
24 资源节点管理 创建opentack服务 0 0 1 0 0
25 资源节点管理 删除openstack服务 0 0 1 0 0
26 项目管理 删除项目 0 0 1 0 0
27 运营部门管理 删除运营部门 0 0 1 0 0

View File

@ -7,13 +7,13 @@
"name" : "系统管理员登录系统",
"children" : [ {
"name" : "test_login",
"uid" : "19a394864f168501",
"uid" : "f5d245fe2310b545",
"parentUid" : "1afc0fe5f967cd9c40d72282d0afcd90",
"status" : "passed",
"time" : {
"start" : 1574506253731,
"stop" : 1574506257353,
"duration" : 3622
"start" : 1579162670851,
"stop" : 1579162671360,
"duration" : 509
},
"flaky" : false,
"newFailed" : false,
@ -28,13 +28,13 @@
"name" : "创建用户",
"children" : [ {
"name" : "test_create_user",
"uid" : "4fc0240608e24319",
"uid" : "f1c67c3270eb15ae",
"parentUid" : "a1901cf7a307d38546672986c4d887ce",
"status" : "passed",
"time" : {
"start" : 1574506263797,
"stop" : 1574506273256,
"duration" : 9459
"start" : 1579162674670,
"stop" : 1579162682294,
"duration" : 7624
},
"flaky" : false,
"newFailed" : false,
@ -45,13 +45,13 @@
"name" : "创建运营部门下的用户",
"children" : [ {
"name" : "test_create_authuser",
"uid" : "bb5f5a8766fdbb89",
"uid" : "3fb100e70a290876",
"parentUid" : "1f5665c678b13e4c5650091d78ebe036",
"status" : "passed",
"time" : {
"start" : 1574506320297,
"stop" : 1574506331949,
"duration" : 11652
"start" : 1579162711586,
"stop" : 1579162718650,
"duration" : 7064
},
"flaky" : false,
"newFailed" : false,
@ -62,13 +62,13 @@
"name" : "删除运营部门下的用户",
"children" : [ {
"name" : "test_delete_tenant_user",
"uid" : "c93ee7a16721428a",
"uid" : "74e0c88293fb407a",
"parentUid" : "1c8406421c1dd0bb598b2f5d54e8bebb",
"status" : "passed",
"time" : {
"start" : 1574506566897,
"stop" : 1574506584279,
"duration" : 17382
"start" : 1579162950663,
"stop" : 1579162963180,
"duration" : 12517
},
"flaky" : false,
"newFailed" : false,
@ -79,13 +79,13 @@
"name" : "删除域用户",
"children" : [ {
"name" : "test_delete_user",
"uid" : "b655838b11e6c33c",
"uid" : "956f193c6ed2b8a3",
"parentUid" : "53b0ab313f98a151950d7e849b775fc3",
"status" : "passed",
"time" : {
"start" : 1574506768464,
"stop" : 1574506783805,
"duration" : 15341
"start" : 1579163163083,
"stop" : 1579163174910,
"duration" : 11827
},
"flaky" : false,
"newFailed" : false,
@ -100,13 +100,13 @@
"name" : "域添加域管理员",
"children" : [ {
"name" : "test_allocation_domain_admin",
"uid" : "35cd7fadfa3b6d45",
"uid" : "d57f583af3a372a",
"parentUid" : "378ce16955e41388170591e4d32d79c7",
"status" : "passed",
"time" : {
"start" : 1574506280380,
"stop" : 1574506295732,
"duration" : 15352
"start" : 1579162685754,
"stop" : 1579162698343,
"duration" : 12589
},
"flaky" : false,
"newFailed" : false,
@ -117,13 +117,13 @@
"name" : "移除域管理员",
"children" : [ {
"name" : "test_remove_domain_admin",
"uid" : "2bf2bda0f080a38e",
"uid" : "4adcc8ea475edcd3",
"parentUid" : "0f87f7ef0e3b3ee12236050d818f5fb5",
"status" : "passed",
"time" : {
"start" : 1574506751447,
"stop" : 1574506762108,
"duration" : 10661
"start" : 1579163152368,
"stop" : 1579163160168,
"duration" : 7800
},
"flaky" : false,
"newFailed" : false,
@ -138,13 +138,13 @@
"name" : "创建运营部门",
"children" : [ {
"name" : "test_create",
"uid" : "c000ad86813c3a0f",
"uid" : "b9ab257d78436e50",
"parentUid" : "f551f786f456da10a5afdb1e322e7191",
"status" : "passed",
"time" : {
"start" : 1574506302338,
"stop" : 1574506313758,
"duration" : 11420
"start" : 1579162701424,
"stop" : 1579162708755,
"duration" : 7331
},
"flaky" : false,
"newFailed" : false,
@ -155,13 +155,13 @@
"name" : "删除运营部门",
"children" : [ {
"name" : "test_delete_tenant",
"uid" : "533e5d07cadf6732",
"uid" : "f2c50489b1f8515a",
"parentUid" : "9192cffd0db2bf7c6a09c1948be9c4fb",
"status" : "passed",
"time" : {
"start" : 1574506613914,
"stop" : 1574506636623,
"duration" : 22709
"start" : 1579162981435,
"stop" : 1579163001280,
"duration" : 19845
},
"flaky" : false,
"newFailed" : false,
@ -176,13 +176,13 @@
"name" : "创建项目",
"children" : [ {
"name" : "test_create_project",
"uid" : "d7aa9d4883ead11f",
"uid" : "65f5f170d7bfdee6",
"parentUid" : "a54f683bfd47575a445323f200441d5e",
"status" : "passed",
"time" : {
"start" : 1574506338364,
"stop" : 1574506347910,
"duration" : 9546
"start" : 1579162721556,
"stop" : 1579162728917,
"duration" : 7361
},
"flaky" : false,
"newFailed" : false,
@ -193,13 +193,13 @@
"name" : "删除项目",
"children" : [ {
"name" : "test_delete_project",
"uid" : "65e0ab8417d62758",
"uid" : "664311dc70ba901d",
"parentUid" : "c3c8a6fe90413e1ed66df44ee5a1521e",
"status" : "passed",
"time" : {
"start" : 1574506590948,
"stop" : 1574506607538,
"duration" : 16590
"start" : 1579162966096,
"stop" : 1579162978342,
"duration" : 12246
},
"flaky" : false,
"newFailed" : false,
@ -214,13 +214,13 @@
"name" : "创建资源节点",
"children" : [ {
"name" : "test_create_region",
"uid" : "b7b30b914c923a83",
"uid" : "bc9779ab6f399fa9",
"parentUid" : "d5aae827a9d3eae383f494f61b812f9b",
"status" : "passed",
"time" : {
"start" : 1574506354398,
"stop" : 1574506370657,
"duration" : 16259
"start" : 1579162731724,
"stop" : 1579162744811,
"duration" : 13087
},
"flaky" : false,
"newFailed" : false,
@ -231,13 +231,13 @@
"name" : "创建VMware服务",
"children" : [ {
"name" : "test_create_service_vmware",
"uid" : "587c5f045f639b07",
"uid" : "6b05da19b0648048",
"parentUid" : "f1278e6bfede6342757cc850a3ddf97c",
"status" : "passed",
"time" : {
"start" : 1574506380480,
"stop" : 1574506390827,
"duration" : 10347
"start" : 1579162747567,
"stop" : 1579162756433,
"duration" : 8866
},
"flaky" : false,
"newFailed" : false,
@ -248,13 +248,13 @@
"name" : "创建opentack服务",
"children" : [ {
"name" : "test_create_service_openstack",
"uid" : "7f5358fe0b0169d7",
"uid" : "c7625209629a1cf2",
"parentUid" : "ef1c5eba3eebfca9d4f9b1ad65720aa5",
"status" : "passed",
"time" : {
"start" : 1574506390831,
"stop" : 1574506399249,
"duration" : 8418
"start" : 1579162759241,
"stop" : 1579162767823,
"duration" : 8582
},
"flaky" : false,
"newFailed" : false,
@ -265,13 +265,13 @@
"name" : "VMware创建endpoint",
"children" : [ {
"name" : "test_vmware_endpoint",
"uid" : "bb3a954ab9b49b9d",
"uid" : "8ad3da85ff598445",
"parentUid" : "cd0a876555c394116336b1176f71e0cd",
"status" : "passed",
"time" : {
"start" : 1574506409003,
"stop" : 1574506416227,
"duration" : 7224
"start" : 1579162770579,
"stop" : 1579162777327,
"duration" : 6748
},
"flaky" : false,
"newFailed" : false,
@ -282,13 +282,13 @@
"name" : "openstack创建endpoint",
"children" : [ {
"name" : "test_openstack_endpoint",
"uid" : "297b00c7b8c77be6",
"uid" : "b086823789b2ef34",
"parentUid" : "13f429c2b72263f0e9bf0e4d079bebeb",
"status" : "passed",
"time" : {
"start" : 1574506426975,
"stop" : 1574506434120,
"duration" : 7145
"start" : 1579162780532,
"stop" : 1579162787368,
"duration" : 6836
},
"flaky" : false,
"newFailed" : false,
@ -299,13 +299,13 @@
"name" : "VMware删除endpint",
"children" : [ {
"name" : "test_delete_vmware_endpoint",
"uid" : "c6a7aa5b9d186c62",
"uid" : "aa1ed28b06d12b2d",
"parentUid" : "594822acc1126ade5db9dbd9b85fc0e5",
"status" : "passed",
"time" : {
"start" : 1574506646427,
"stop" : 1574506661362,
"duration" : 14935
"start" : 1579163004135,
"stop" : 1579163018126,
"duration" : 13991
},
"flaky" : false,
"newFailed" : false,
@ -316,13 +316,13 @@
"name" : "openstack删除endpoint",
"children" : [ {
"name" : "test_delete_openstack_endpoint",
"uid" : "ce95a572397b4f3d",
"uid" : "c346293772d84211",
"parentUid" : "394de460eb56baf4798f73395787fe39",
"status" : "passed",
"time" : {
"start" : 1574506674361,
"stop" : 1574506689740,
"duration" : 15379
"start" : 1579163021120,
"stop" : 1579163035175,
"duration" : 14055
},
"flaky" : false,
"newFailed" : false,
@ -333,13 +333,13 @@
"name" : "删除VMware服务",
"children" : [ {
"name" : "test_delete_service_vmware",
"uid" : "19156baa30983d",
"uid" : "db3fe1ca66285ffa",
"parentUid" : "f72fa2c459fd8864dcb455530768f5d5",
"status" : "passed",
"status" : "broken",
"time" : {
"start" : 1574506699479,
"stop" : 1574506712430,
"duration" : 12951
"start" : 1579163072450,
"stop" : 1579163082403,
"duration" : 9953
},
"flaky" : false,
"newFailed" : false,
@ -350,13 +350,13 @@
"name" : "删除openstack服务",
"children" : [ {
"name" : "test_delete_service_openstack",
"uid" : "737ae62fda27cd94",
"uid" : "50a56dd22e7c119",
"parentUid" : "6e388ab5a929d60bee9a3338ed7edbbe",
"status" : "passed",
"time" : {
"start" : 1574506712435,
"stop" : 1574506723732,
"duration" : 11297
"start" : 1579163085223,
"stop" : 1579163096988,
"duration" : 11765
},
"flaky" : false,
"newFailed" : false,
@ -367,13 +367,13 @@
"name" : "删除资源节点",
"children" : [ {
"name" : "test_delete_region",
"uid" : "286852177ac0a235",
"uid" : "436f76e61b4e0c55",
"parentUid" : "f7410468ac84685b75e5ae718dabe2f7",
"status" : "passed",
"status" : "broken",
"time" : {
"start" : 1574506730097,
"stop" : 1574506745099,
"duration" : 15002
"start" : 1579163137217,
"stop" : 1579163149453,
"duration" : 12236
},
"flaky" : false,
"newFailed" : false,
@ -388,13 +388,13 @@
"name" : "同步物理资源",
"children" : [ {
"name" : "test_sync_phy_res",
"uid" : "697b9f1432778037",
"uid" : "84f53e39b9cb2047",
"parentUid" : "acf34cc2a8e54d0ed240b830e6864d39",
"status" : "passed",
"time" : {
"start" : 1574506440564,
"stop" : 1574506471585,
"duration" : 31021
"start" : 1579162790198,
"stop" : 1579162878050,
"duration" : 87852
},
"flaky" : false,
"newFailed" : false,
@ -409,13 +409,13 @@
"name" : "创建vdc",
"children" : [ {
"name" : "test_create_vdc",
"uid" : "575284bcd51deff",
"uid" : "10f60f461394b1aa",
"parentUid" : "825fddef75fcd2c320add046a042ca04",
"status" : "passed",
"time" : {
"start" : 1574506477914,
"stop" : 1574506486849,
"duration" : 8935
"start" : 1579162880914,
"stop" : 1579162884946,
"duration" : 4032
},
"flaky" : false,
"newFailed" : false,
@ -426,13 +426,13 @@
"name" : "删除VDC",
"children" : [ {
"name" : "test_delete_vdc",
"uid" : "823059517e214f96",
"uid" : "46ad6b86d50836f4",
"parentUid" : "a8db3f45bfb566d1075bf9b244396316",
"status" : "passed",
"time" : {
"start" : 1574506543831,
"stop" : 1574506560611,
"duration" : 16780
"start" : 1579162935756,
"stop" : 1579162947552,
"duration" : 11796
},
"flaky" : false,
"newFailed" : false,
@ -447,13 +447,13 @@
"name" : "创建VPOOL",
"children" : [ {
"name" : "test_create_vpool",
"uid" : "28d951403b7851ff",
"uid" : "8d3a5a8630286d34",
"parentUid" : "720f0994da370456077d97b1dfaa5e79",
"status" : "passed",
"time" : {
"start" : 1574506493148,
"stop" : 1574506508615,
"duration" : 15467
"start" : 1579162887747,
"stop" : 1579162898635,
"duration" : 10888
},
"flaky" : false,
"newFailed" : false,
@ -464,13 +464,13 @@
"name" : "删除VPOOL",
"children" : [ {
"name" : "test_delete_vpool",
"uid" : "d423a3baa8731b25",
"uid" : "2a340e3f64f5b481",
"parentUid" : "6322be140dc55665105449e0f7670cd5",
"status" : "passed",
"time" : {
"start" : 1574506515581,
"stop" : 1574506537478,
"duration" : 21897
"start" : 1579162915840,
"stop" : 1579162932711,
"duration" : 16871
},
"flaky" : false,
"newFailed" : false,

View File

@ -0,0 +1,2 @@
"Category","FAILED","BROKEN","PASSED","SKIPPED","UNKNOWN"
"Test defects","0","2","0","0","0"
1 Category FAILED BROKEN PASSED SKIPPED UNKNOWN
1 Category FAILED BROKEN PASSED SKIPPED UNKNOWN
2 Test defects 0 2 0 0 0

View File

@ -1,5 +1,43 @@
{
"uid" : "4b4757e66a1912dae1a509f688f20b0f",
"name" : "categories",
"children" : [ ]
"children" : [ {
"name" : "Test defects",
"children" : [ {
"name" : "selenium.common.exceptions.TimeoutException: Message: Element: xpath->(//a[contains(text(),'vmware_api')]) not found in 5 seconds.",
"children" : [ {
"name" : "test_delete_service_vmware",
"uid" : "db3fe1ca66285ffa",
"parentUid" : "e3761f659e67c442914da2ddba4dfd50",
"status" : "broken",
"time" : {
"start" : 1579163072450,
"stop" : 1579163082403,
"duration" : 9953
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
} ],
"uid" : "e3761f659e67c442914da2ddba4dfd50"
}, {
"name" : "selenium.common.exceptions.TimeoutException: Message: Element: xpath->//a[contains(.,'河南')]/parent::li//child::i not found in 5 seconds.",
"children" : [ {
"name" : "test_delete_region",
"uid" : "436f76e61b4e0c55",
"parentUid" : "d1125c8c9ba29d09643dbec10a68ab55",
"status" : "broken",
"time" : {
"start" : 1579163137217,
"stop" : 1579163149453,
"duration" : 12236
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
} ],
"uid" : "d1125c8c9ba29d09643dbec10a68ab55"
} ],
"uid" : "bdbf199525818fae7a8651db9eafe741"
} ]
}

View File

@ -7,13 +7,13 @@
"name" : "test_00_login",
"children" : [ {
"name" : "test_login",
"uid" : "19a394864f168501",
"uid" : "f5d245fe2310b545",
"parentUid" : "bab4c30549b3749773446ecf299de761",
"status" : "passed",
"time" : {
"start" : 1574506253731,
"stop" : 1574506257353,
"duration" : 3622
"start" : 1579162670851,
"stop" : 1579162671360,
"duration" : 509
},
"flaky" : false,
"newFailed" : false,
@ -24,13 +24,13 @@
"name" : "test_01_create_user",
"children" : [ {
"name" : "test_create_user",
"uid" : "4fc0240608e24319",
"uid" : "f1c67c3270eb15ae",
"parentUid" : "a0ffc78ec0ba941583f9bbc20e02bb64",
"status" : "passed",
"time" : {
"start" : 1574506263797,
"stop" : 1574506273256,
"duration" : 9459
"start" : 1579162674670,
"stop" : 1579162682294,
"duration" : 7624
},
"flaky" : false,
"newFailed" : false,
@ -41,13 +41,13 @@
"name" : "test_02_allocation_domain_administrator",
"children" : [ {
"name" : "test_allocation_domain_admin",
"uid" : "35cd7fadfa3b6d45",
"uid" : "d57f583af3a372a",
"parentUid" : "68a25b37bebda80c3e9dcd07888e75ec",
"status" : "passed",
"time" : {
"start" : 1574506280380,
"stop" : 1574506295732,
"duration" : 15352
"start" : 1579162685754,
"stop" : 1579162698343,
"duration" : 12589
},
"flaky" : false,
"newFailed" : false,
@ -58,13 +58,13 @@
"name" : "test_03_create_tenant",
"children" : [ {
"name" : "test_create",
"uid" : "c000ad86813c3a0f",
"uid" : "b9ab257d78436e50",
"parentUid" : "94d502a1ee6c2526d254a77ec190208c",
"status" : "passed",
"time" : {
"start" : 1574506302338,
"stop" : 1574506313758,
"duration" : 11420
"start" : 1579162701424,
"stop" : 1579162708755,
"duration" : 7331
},
"flaky" : false,
"newFailed" : false,
@ -75,13 +75,13 @@
"name" : "test_04_create_auth_user",
"children" : [ {
"name" : "test_create_authuser",
"uid" : "bb5f5a8766fdbb89",
"uid" : "3fb100e70a290876",
"parentUid" : "34cea16062ccd90dccb39b9218b3cdd7",
"status" : "passed",
"time" : {
"start" : 1574506320297,
"stop" : 1574506331949,
"duration" : 11652
"start" : 1579162711586,
"stop" : 1579162718650,
"duration" : 7064
},
"flaky" : false,
"newFailed" : false,
@ -92,13 +92,13 @@
"name" : "test_05_create_project",
"children" : [ {
"name" : "test_create_project",
"uid" : "d7aa9d4883ead11f",
"uid" : "65f5f170d7bfdee6",
"parentUid" : "334e0e6505d04f9b65451a1a017af970",
"status" : "passed",
"time" : {
"start" : 1574506338364,
"stop" : 1574506347910,
"duration" : 9546
"start" : 1579162721556,
"stop" : 1579162728917,
"duration" : 7361
},
"flaky" : false,
"newFailed" : false,
@ -109,13 +109,13 @@
"name" : "test_06_create_region",
"children" : [ {
"name" : "test_create_region",
"uid" : "b7b30b914c923a83",
"uid" : "bc9779ab6f399fa9",
"parentUid" : "3b276e6348d3eb25bcaae512ad7fc668",
"status" : "passed",
"time" : {
"start" : 1574506354398,
"stop" : 1574506370657,
"duration" : 16259
"start" : 1579162731724,
"stop" : 1579162744811,
"duration" : 13087
},
"flaky" : false,
"newFailed" : false,
@ -126,26 +126,26 @@
"name" : "test_07_create_service",
"children" : [ {
"name" : "test_create_service_vmware",
"uid" : "587c5f045f639b07",
"uid" : "6b05da19b0648048",
"parentUid" : "28e74c8f30970f3c804d69c5845b5e17",
"status" : "passed",
"time" : {
"start" : 1574506380480,
"stop" : 1574506390827,
"duration" : 10347
"start" : 1579162747567,
"stop" : 1579162756433,
"duration" : 8866
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
}, {
"name" : "test_create_service_openstack",
"uid" : "7f5358fe0b0169d7",
"uid" : "c7625209629a1cf2",
"parentUid" : "28e74c8f30970f3c804d69c5845b5e17",
"status" : "passed",
"time" : {
"start" : 1574506390831,
"stop" : 1574506399249,
"duration" : 8418
"start" : 1579162759241,
"stop" : 1579162767823,
"duration" : 8582
},
"flaky" : false,
"newFailed" : false,
@ -156,26 +156,26 @@
"name" : "test_08_create_endpoint",
"children" : [ {
"name" : "test_vmware_endpoint",
"uid" : "bb3a954ab9b49b9d",
"uid" : "8ad3da85ff598445",
"parentUid" : "c9bdedf1a42d3c008c59b678033f6575",
"status" : "passed",
"time" : {
"start" : 1574506409003,
"stop" : 1574506416227,
"duration" : 7224
"start" : 1579162770579,
"stop" : 1579162777327,
"duration" : 6748
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
}, {
"name" : "test_openstack_endpoint",
"uid" : "297b00c7b8c77be6",
"uid" : "b086823789b2ef34",
"parentUid" : "c9bdedf1a42d3c008c59b678033f6575",
"status" : "passed",
"time" : {
"start" : 1574506426975,
"stop" : 1574506434120,
"duration" : 7145
"start" : 1579162780532,
"stop" : 1579162787368,
"duration" : 6836
},
"flaky" : false,
"newFailed" : false,
@ -186,13 +186,13 @@
"name" : "test_09_sync_phy_resource",
"children" : [ {
"name" : "test_sync_phy_res",
"uid" : "697b9f1432778037",
"uid" : "84f53e39b9cb2047",
"parentUid" : "e76ce4309f325d615faa4482a89ce87a",
"status" : "passed",
"time" : {
"start" : 1574506440564,
"stop" : 1574506471585,
"duration" : 31021
"start" : 1579162790198,
"stop" : 1579162878050,
"duration" : 87852
},
"flaky" : false,
"newFailed" : false,
@ -203,13 +203,13 @@
"name" : "test_10_craete_vdc",
"children" : [ {
"name" : "test_create_vdc",
"uid" : "575284bcd51deff",
"uid" : "10f60f461394b1aa",
"parentUid" : "57199f83167f416986b04b7847dd93b1",
"status" : "passed",
"time" : {
"start" : 1574506477914,
"stop" : 1574506486849,
"duration" : 8935
"start" : 1579162880914,
"stop" : 1579162884946,
"duration" : 4032
},
"flaky" : false,
"newFailed" : false,
@ -220,13 +220,13 @@
"name" : "test_11_ceate_crate_vpool",
"children" : [ {
"name" : "test_create_vpool",
"uid" : "28d951403b7851ff",
"uid" : "8d3a5a8630286d34",
"parentUid" : "d0be255f68673ccb9f260d6f8492405c",
"status" : "passed",
"time" : {
"start" : 1574506493148,
"stop" : 1574506508615,
"duration" : 15467
"start" : 1579162887747,
"stop" : 1579162898635,
"duration" : 10888
},
"flaky" : false,
"newFailed" : false,
@ -237,13 +237,13 @@
"name" : "test_12_delete_vpool",
"children" : [ {
"name" : "test_delete_vpool",
"uid" : "d423a3baa8731b25",
"uid" : "2a340e3f64f5b481",
"parentUid" : "80392d42e6404d59e71a75a5186f7255",
"status" : "passed",
"time" : {
"start" : 1574506515581,
"stop" : 1574506537478,
"duration" : 21897
"start" : 1579162915840,
"stop" : 1579162932711,
"duration" : 16871
},
"flaky" : false,
"newFailed" : false,
@ -254,13 +254,13 @@
"name" : "test_13_delete_vdc",
"children" : [ {
"name" : "test_delete_vdc",
"uid" : "823059517e214f96",
"uid" : "46ad6b86d50836f4",
"parentUid" : "150839f97e90a0cbbaa97a575db632b5",
"status" : "passed",
"time" : {
"start" : 1574506543831,
"stop" : 1574506560611,
"duration" : 16780
"start" : 1579162935756,
"stop" : 1579162947552,
"duration" : 11796
},
"flaky" : false,
"newFailed" : false,
@ -271,13 +271,13 @@
"name" : "test_14_delete_tenant_user",
"children" : [ {
"name" : "test_delete_tenant_user",
"uid" : "c93ee7a16721428a",
"uid" : "74e0c88293fb407a",
"parentUid" : "940c2c620aac62810ab5fb91b6d6e102",
"status" : "passed",
"time" : {
"start" : 1574506566897,
"stop" : 1574506584279,
"duration" : 17382
"start" : 1579162950663,
"stop" : 1579162963180,
"duration" : 12517
},
"flaky" : false,
"newFailed" : false,
@ -288,13 +288,13 @@
"name" : "test_15_delete_project",
"children" : [ {
"name" : "test_delete_project",
"uid" : "65e0ab8417d62758",
"uid" : "664311dc70ba901d",
"parentUid" : "94295b8c51a056034386ed72264363c0",
"status" : "passed",
"time" : {
"start" : 1574506590948,
"stop" : 1574506607538,
"duration" : 16590
"start" : 1579162966096,
"stop" : 1579162978342,
"duration" : 12246
},
"flaky" : false,
"newFailed" : false,
@ -305,13 +305,13 @@
"name" : "test_16_delete_tenant",
"children" : [ {
"name" : "test_delete_tenant",
"uid" : "533e5d07cadf6732",
"uid" : "f2c50489b1f8515a",
"parentUid" : "dc664bb782e3f546a80a3414311011b5",
"status" : "passed",
"time" : {
"start" : 1574506613914,
"stop" : 1574506636623,
"duration" : 22709
"start" : 1579162981435,
"stop" : 1579163001280,
"duration" : 19845
},
"flaky" : false,
"newFailed" : false,
@ -322,26 +322,26 @@
"name" : "test_17_delete_endpoint",
"children" : [ {
"name" : "test_delete_vmware_endpoint",
"uid" : "c6a7aa5b9d186c62",
"uid" : "aa1ed28b06d12b2d",
"parentUid" : "c56580e76b28a6acd51192902ca97016",
"status" : "passed",
"time" : {
"start" : 1574506646427,
"stop" : 1574506661362,
"duration" : 14935
"start" : 1579163004135,
"stop" : 1579163018126,
"duration" : 13991
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
}, {
"name" : "test_delete_openstack_endpoint",
"uid" : "ce95a572397b4f3d",
"uid" : "c346293772d84211",
"parentUid" : "c56580e76b28a6acd51192902ca97016",
"status" : "passed",
"time" : {
"start" : 1574506674361,
"stop" : 1574506689740,
"duration" : 15379
"start" : 1579163021120,
"stop" : 1579163035175,
"duration" : 14055
},
"flaky" : false,
"newFailed" : false,
@ -352,26 +352,26 @@
"name" : "test_18_delete_service",
"children" : [ {
"name" : "test_delete_service_vmware",
"uid" : "19156baa30983d",
"uid" : "db3fe1ca66285ffa",
"parentUid" : "072fa84e4fb4e55cdf544b54920922d2",
"status" : "passed",
"status" : "broken",
"time" : {
"start" : 1574506699479,
"stop" : 1574506712430,
"duration" : 12951
"start" : 1579163072450,
"stop" : 1579163082403,
"duration" : 9953
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
}, {
"name" : "test_delete_service_openstack",
"uid" : "737ae62fda27cd94",
"uid" : "50a56dd22e7c119",
"parentUid" : "072fa84e4fb4e55cdf544b54920922d2",
"status" : "passed",
"time" : {
"start" : 1574506712435,
"stop" : 1574506723732,
"duration" : 11297
"start" : 1579163085223,
"stop" : 1579163096988,
"duration" : 11765
},
"flaky" : false,
"newFailed" : false,
@ -382,13 +382,13 @@
"name" : "test_19_delete_region",
"children" : [ {
"name" : "test_delete_region",
"uid" : "286852177ac0a235",
"uid" : "436f76e61b4e0c55",
"parentUid" : "5610f0daf061fdab0ead83618c42085a",
"status" : "passed",
"status" : "broken",
"time" : {
"start" : 1574506730097,
"stop" : 1574506745099,
"duration" : 15002
"start" : 1579163137217,
"stop" : 1579163149453,
"duration" : 12236
},
"flaky" : false,
"newFailed" : false,
@ -399,13 +399,13 @@
"name" : "test_20_remove_domain_admin",
"children" : [ {
"name" : "test_remove_domain_admin",
"uid" : "2bf2bda0f080a38e",
"uid" : "4adcc8ea475edcd3",
"parentUid" : "13e6a81b99e9c9114b33f4c2c401d586",
"status" : "passed",
"time" : {
"start" : 1574506751447,
"stop" : 1574506762108,
"duration" : 10661
"start" : 1579163152368,
"stop" : 1579163160168,
"duration" : 7800
},
"flaky" : false,
"newFailed" : false,
@ -416,13 +416,13 @@
"name" : "test_21_delete_user",
"children" : [ {
"name" : "test_delete_user",
"uid" : "b655838b11e6c33c",
"uid" : "956f193c6ed2b8a3",
"parentUid" : "3fb8b6c592ebd9cc0271bcef178aeb73",
"status" : "passed",
"time" : {
"start" : 1574506768464,
"stop" : 1574506783805,
"duration" : 15341
"start" : 1579163163083,
"stop" : 1579163174910,
"duration" : 11827
},
"flaky" : false,
"newFailed" : false,

View File

@ -1,41 +1,41 @@
"Status","Start Time","Stop Time","Duration in ms","Parent Suite","Suite","Sub Suite","Test Class","Test Method","Name","Description"
"passed","Sat Nov 23 18:59:28 CST 2019","Sat Nov 23 18:59:43 CST 2019","15341","testcase","test_21_delete_user","TestDeleteUser","","","test_delete_user",""
"passed","Sat Nov 23 18:52:00 CST 2019","Sat Nov 23 18:52:11 CST 2019","11652","testcase","test_04_create_auth_user","TestCreateUser","","","test_create_authuser",""
"passed","Sat Nov 23 18:58:50 CST 2019","Sat Nov 23 18:59:05 CST 2019","15002","testcase","test_19_delete_region","TestDeleteRegion","","","test_delete_region",""
"passed","Sat Nov 23 18:51:03 CST 2019","Sat Nov 23 18:51:13 CST 2019","9459","testcase","test_01_create_user","TestCreateUser","","","test_create_user",""
"passed","Sat Nov 23 18:54:00 CST 2019","Sat Nov 23 18:54:31 CST 2019","31021","testcase","test_09_sync_phy_resource","TestPhySunc","","","test_sync_phy_res",""
"passed","Sat Nov 23 18:59:11 CST 2019","Sat Nov 23 18:59:22 CST 2019","10661","testcase","test_20_remove_domain_admin","TestRemoveDomainAdmin","","","test_remove_domain_admin",""
"passed","Sat Nov 23 18:55:15 CST 2019","Sat Nov 23 18:55:37 CST 2019","21897","testcase","test_12_delete_vpool","Test_Vpool_Delete","","","test_delete_vpool",""
"passed","Sat Nov 23 18:52:34 CST 2019","Sat Nov 23 18:52:50 CST 2019","16259","testcase","test_06_create_region","TestCreateRegion","","","test_create_region",""
"passed","Sat Nov 23 18:53:10 CST 2019","Sat Nov 23 18:53:19 CST 2019","8418","testcase","test_07_create_service","TestCreateService","","","test_create_service_openstack",""
"passed","Sat Nov 23 18:53:00 CST 2019","Sat Nov 23 18:53:10 CST 2019","10347","testcase","test_07_create_service","TestCreateService","","","test_create_service_vmware",""
"passed","Sat Nov 23 18:52:18 CST 2019","Sat Nov 23 18:52:27 CST 2019","9546","testcase","test_05_create_project","TestProject","","","test_create_project",""
"passed","Sat Nov 23 18:55:43 CST 2019","Sat Nov 23 18:56:00 CST 2019","16780","testcase","test_13_delete_vdc","Test_Vpool_Vdc","","","test_delete_vdc",""
"passed","Sat Nov 23 18:57:26 CST 2019","Sat Nov 23 18:57:41 CST 2019","14935","testcase","test_17_delete_endpoint","TestDeleteEndpoint","","","test_delete_vmware_endpoint","
测试删除vmwareendpoint
:return:
"
"passed","Sat Nov 23 18:53:46 CST 2019","Sat Nov 23 18:53:54 CST 2019","7145","testcase","test_08_create_endpoint","TestCreateEndpoint","","","test_openstack_endpoint","
"passed","Thu Jan 16 16:19:40 CST 2020","Thu Jan 16 16:19:47 CST 2020","6836","testcase","test_08_create_endpoint","TestCreateEndpoint","","","test_openstack_endpoint","
测试添加openstackendpoint
依赖已添加openstack服务
:return:
"
"passed","Sat Nov 23 18:58:19 CST 2019","Sat Nov 23 18:58:32 CST 2019","12951","testcase","test_18_delete_service","TestDeleteService","","","test_delete_service_vmware",""
"passed","Sat Nov 23 18:56:06 CST 2019","Sat Nov 23 18:56:24 CST 2019","17382","testcase","test_14_delete_tenant_user","TestDeleteUser","","","test_delete_tenant_user",""
"passed","Sat Nov 23 18:51:42 CST 2019","Sat Nov 23 18:51:53 CST 2019","11420","testcase","test_03_create_tenant","TestTeant","","","test_create",""
"passed","Sat Nov 23 18:54:37 CST 2019","Sat Nov 23 18:54:46 CST 2019","8935","testcase","test_10_craete_vdc","TestCreateVDC","","","test_create_vdc",""
"passed","Sat Nov 23 18:58:32 CST 2019","Sat Nov 23 18:58:43 CST 2019","11297","testcase","test_18_delete_service","TestDeleteService","","","test_delete_service_openstack",""
"passed","Sat Nov 23 18:50:53 CST 2019","Sat Nov 23 18:50:57 CST 2019","3622","testcase","test_00_login","TestLoin","","","test_login",""
"passed","Sat Nov 23 18:51:20 CST 2019","Sat Nov 23 18:51:35 CST 2019","15352","testcase","test_02_allocation_domain_administrator","TestAllDomainAdmin","","","test_allocation_domain_admin",""
"passed","Sat Nov 23 18:56:30 CST 2019","Sat Nov 23 18:56:47 CST 2019","16590","testcase","test_15_delete_project","TestProjectDelete","","","test_delete_project",""
"passed","Sat Nov 23 18:54:53 CST 2019","Sat Nov 23 18:55:08 CST 2019","15467","testcase","test_11_ceate_crate_vpool","TestCreateVpool","","","test_create_vpool",""
"passed","Sat Nov 23 18:53:29 CST 2019","Sat Nov 23 18:53:36 CST 2019","7224","testcase","test_08_create_endpoint","TestCreateEndpoint","","","test_vmware_endpoint","
"passed","Thu Jan 16 16:21:27 CST 2020","Thu Jan 16 16:21:38 CST 2020","10888","testcase","test_11_ceate_crate_vpool","TestCreateVpool","","","test_create_vpool",""
"broken","Thu Jan 16 16:24:32 CST 2020","Thu Jan 16 16:24:42 CST 2020","9953","testcase","test_18_delete_service","TestDeleteService","","","test_delete_service_vmware",""
"passed","Thu Jan 16 16:18:31 CST 2020","Thu Jan 16 16:18:38 CST 2020","7064","testcase","test_04_create_auth_user","TestCreateUser","","","test_create_authuser",""
"passed","Thu Jan 16 16:26:03 CST 2020","Thu Jan 16 16:26:14 CST 2020","11827","testcase","test_21_delete_user","TestDeleteUser","","","test_delete_user",""
"passed","Thu Jan 16 16:19:50 CST 2020","Thu Jan 16 16:21:18 CST 2020","87852","testcase","test_09_sync_phy_resource","TestPhySunc","","","test_sync_phy_res",""
"passed","Thu Jan 16 16:22:15 CST 2020","Thu Jan 16 16:22:27 CST 2020","11796","testcase","test_13_delete_vdc","Test_Vpool_Vdc","","","test_delete_vdc",""
"passed","Thu Jan 16 16:25:52 CST 2020","Thu Jan 16 16:26:00 CST 2020","7800","testcase","test_20_remove_domain_admin","TestRemoveDomainAdmin","","","test_remove_domain_admin",""
"broken","Thu Jan 16 16:25:37 CST 2020","Thu Jan 16 16:25:49 CST 2020","12236","testcase","test_19_delete_region","TestDeleteRegion","","","test_delete_region",""
"passed","Thu Jan 16 16:21:55 CST 2020","Thu Jan 16 16:22:12 CST 2020","16871","testcase","test_12_delete_vpool","Test_Vpool_Delete","","","test_delete_vpool",""
"passed","Thu Jan 16 16:22:30 CST 2020","Thu Jan 16 16:22:43 CST 2020","12517","testcase","test_14_delete_tenant_user","TestDeleteUser","","","test_delete_tenant_user",""
"passed","Thu Jan 16 16:17:50 CST 2020","Thu Jan 16 16:17:51 CST 2020","509","testcase","test_00_login","TestLoin","","","test_login",""
"passed","Thu Jan 16 16:19:07 CST 2020","Thu Jan 16 16:19:16 CST 2020","8866","testcase","test_07_create_service","TestCreateService","","","test_create_service_vmware",""
"passed","Thu Jan 16 16:19:30 CST 2020","Thu Jan 16 16:19:37 CST 2020","6748","testcase","test_08_create_endpoint","TestCreateEndpoint","","","test_vmware_endpoint","
测试添加vmwareendpoint
依赖已添加vmware服务
:return:
"
"passed","Sat Nov 23 18:57:54 CST 2019","Sat Nov 23 18:58:09 CST 2019","15379","testcase","test_17_delete_endpoint","TestDeleteEndpoint","","","test_delete_openstack_endpoint","
"passed","Thu Jan 16 16:18:51 CST 2020","Thu Jan 16 16:19:04 CST 2020","13087","testcase","test_06_create_region","TestCreateRegion","","","test_create_region",""
"passed","Thu Jan 16 16:17:54 CST 2020","Thu Jan 16 16:18:02 CST 2020","7624","testcase","test_01_create_user","TestCreateUser","","","test_create_user",""
"passed","Thu Jan 16 16:21:20 CST 2020","Thu Jan 16 16:21:24 CST 2020","4032","testcase","test_10_craete_vdc","TestCreateVDC","","","test_create_vdc",""
"passed","Thu Jan 16 16:23:41 CST 2020","Thu Jan 16 16:23:55 CST 2020","14055","testcase","test_17_delete_endpoint","TestDeleteEndpoint","","","test_delete_openstack_endpoint","
测试删除openstackendpoint
:return:
"
"passed","Sat Nov 23 18:56:53 CST 2019","Sat Nov 23 18:57:16 CST 2019","22709","testcase","test_16_delete_tenant","TestTenantDelete","","","test_delete_tenant",""
"passed","Thu Jan 16 16:18:41 CST 2020","Thu Jan 16 16:18:48 CST 2020","7361","testcase","test_05_create_project","TestProject","","","test_create_project",""
"passed","Thu Jan 16 16:18:05 CST 2020","Thu Jan 16 16:18:18 CST 2020","12589","testcase","test_02_allocation_domain_administrator","TestAllDomainAdmin","","","test_allocation_domain_admin",""
"passed","Thu Jan 16 16:23:24 CST 2020","Thu Jan 16 16:23:38 CST 2020","13991","testcase","test_17_delete_endpoint","TestDeleteEndpoint","","","test_delete_vmware_endpoint","
测试删除vmwareendpoint
:return:
"
"passed","Thu Jan 16 16:18:21 CST 2020","Thu Jan 16 16:18:28 CST 2020","7331","testcase","test_03_create_tenant","TestTeant","","","test_create",""
"passed","Thu Jan 16 16:19:19 CST 2020","Thu Jan 16 16:19:27 CST 2020","8582","testcase","test_07_create_service","TestCreateService","","","test_create_service_openstack",""
"passed","Thu Jan 16 16:24:45 CST 2020","Thu Jan 16 16:24:56 CST 2020","11765","testcase","test_18_delete_service","TestDeleteService","","","test_delete_service_openstack",""
"passed","Thu Jan 16 16:22:46 CST 2020","Thu Jan 16 16:22:58 CST 2020","12246","testcase","test_15_delete_project","TestProjectDelete","","","test_delete_project",""
"passed","Thu Jan 16 16:23:01 CST 2020","Thu Jan 16 16:23:21 CST 2020","19845","testcase","test_16_delete_tenant","TestTenantDelete","","","test_delete_tenant",""

1 Status Start Time Stop Time Duration in ms Parent Suite Suite Sub Suite Test Class Test Method Name Description
2 passed Sat Nov 23 18:59:28 CST 2019 Thu Jan 16 16:19:40 CST 2020 Sat Nov 23 18:59:43 CST 2019 Thu Jan 16 16:19:47 CST 2020 15341 6836 testcase test_21_delete_user test_08_create_endpoint TestDeleteUser TestCreateEndpoint test_delete_user test_openstack_endpoint 测试添加openstack,endpoint 依赖已添加openstack服务 :return:
passed Sat Nov 23 18:52:00 CST 2019 Sat Nov 23 18:52:11 CST 2019 11652 testcase test_04_create_auth_user TestCreateUser test_create_authuser
passed Sat Nov 23 18:58:50 CST 2019 Sat Nov 23 18:59:05 CST 2019 15002 testcase test_19_delete_region TestDeleteRegion test_delete_region
passed Sat Nov 23 18:51:03 CST 2019 Sat Nov 23 18:51:13 CST 2019 9459 testcase test_01_create_user TestCreateUser test_create_user
passed Sat Nov 23 18:54:00 CST 2019 Sat Nov 23 18:54:31 CST 2019 31021 testcase test_09_sync_phy_resource TestPhySunc test_sync_phy_res
passed Sat Nov 23 18:59:11 CST 2019 Sat Nov 23 18:59:22 CST 2019 10661 testcase test_20_remove_domain_admin TestRemoveDomainAdmin test_remove_domain_admin
passed Sat Nov 23 18:55:15 CST 2019 Sat Nov 23 18:55:37 CST 2019 21897 testcase test_12_delete_vpool Test_Vpool_Delete test_delete_vpool
passed Sat Nov 23 18:52:34 CST 2019 Sat Nov 23 18:52:50 CST 2019 16259 testcase test_06_create_region TestCreateRegion test_create_region
passed Sat Nov 23 18:53:10 CST 2019 Sat Nov 23 18:53:19 CST 2019 8418 testcase test_07_create_service TestCreateService test_create_service_openstack
passed Sat Nov 23 18:53:00 CST 2019 Sat Nov 23 18:53:10 CST 2019 10347 testcase test_07_create_service TestCreateService test_create_service_vmware
passed Sat Nov 23 18:52:18 CST 2019 Sat Nov 23 18:52:27 CST 2019 9546 testcase test_05_create_project TestProject test_create_project
passed Sat Nov 23 18:55:43 CST 2019 Sat Nov 23 18:56:00 CST 2019 16780 testcase test_13_delete_vdc Test_Vpool_Vdc test_delete_vdc
passed Sat Nov 23 18:57:26 CST 2019 Sat Nov 23 18:57:41 CST 2019 14935 testcase test_17_delete_endpoint TestDeleteEndpoint test_delete_vmware_endpoint 测试删除vmware,endpoint :return:
passed Sat Nov 23 18:53:46 CST 2019 Sat Nov 23 18:53:54 CST 2019 7145 testcase test_08_create_endpoint TestCreateEndpoint test_openstack_endpoint 测试添加openstack,endpoint 依赖已添加openstack服务 :return:
passed Sat Nov 23 18:58:19 CST 2019 Sat Nov 23 18:58:32 CST 2019 12951 testcase test_18_delete_service TestDeleteService test_delete_service_vmware
passed Sat Nov 23 18:56:06 CST 2019 Sat Nov 23 18:56:24 CST 2019 17382 testcase test_14_delete_tenant_user TestDeleteUser test_delete_tenant_user
passed Sat Nov 23 18:51:42 CST 2019 Sat Nov 23 18:51:53 CST 2019 11420 testcase test_03_create_tenant TestTeant test_create
3 passed Sat Nov 23 18:54:37 CST 2019 Thu Jan 16 16:21:27 CST 2020 Sat Nov 23 18:54:46 CST 2019 Thu Jan 16 16:21:38 CST 2020 8935 10888 testcase test_10_craete_vdc test_11_ceate_crate_vpool TestCreateVDC TestCreateVpool test_create_vdc test_create_vpool
4 passed broken Sat Nov 23 18:58:32 CST 2019 Thu Jan 16 16:24:32 CST 2020 Sat Nov 23 18:58:43 CST 2019 Thu Jan 16 16:24:42 CST 2020 11297 9953 testcase test_18_delete_service TestDeleteService test_delete_service_openstack test_delete_service_vmware
5 passed Sat Nov 23 18:50:53 CST 2019 Thu Jan 16 16:18:31 CST 2020 Sat Nov 23 18:50:57 CST 2019 Thu Jan 16 16:18:38 CST 2020 3622 7064 testcase test_00_login test_04_create_auth_user TestLoin TestCreateUser test_login test_create_authuser
6 passed Sat Nov 23 18:51:20 CST 2019 Thu Jan 16 16:26:03 CST 2020 Sat Nov 23 18:51:35 CST 2019 Thu Jan 16 16:26:14 CST 2020 15352 11827 testcase test_02_allocation_domain_administrator test_21_delete_user TestAllDomainAdmin TestDeleteUser test_allocation_domain_admin test_delete_user
7 passed Sat Nov 23 18:56:30 CST 2019 Thu Jan 16 16:19:50 CST 2020 Sat Nov 23 18:56:47 CST 2019 Thu Jan 16 16:21:18 CST 2020 16590 87852 testcase test_15_delete_project test_09_sync_phy_resource TestProjectDelete TestPhySunc test_delete_project test_sync_phy_res
8 passed Sat Nov 23 18:54:53 CST 2019 Thu Jan 16 16:22:15 CST 2020 Sat Nov 23 18:55:08 CST 2019 Thu Jan 16 16:22:27 CST 2020 15467 11796 testcase test_11_ceate_crate_vpool test_13_delete_vdc TestCreateVpool Test_Vpool_Vdc test_create_vpool test_delete_vdc
9 passed Sat Nov 23 18:53:29 CST 2019 Thu Jan 16 16:25:52 CST 2020 Sat Nov 23 18:53:36 CST 2019 Thu Jan 16 16:26:00 CST 2020 7224 7800 testcase test_08_create_endpoint test_20_remove_domain_admin TestCreateEndpoint TestRemoveDomainAdmin test_vmware_endpoint test_remove_domain_admin 测试添加vmware,endpoint 依赖已添加vmware服务 :return:
10 passed broken Sat Nov 23 18:57:54 CST 2019 Thu Jan 16 16:25:37 CST 2020 Sat Nov 23 18:58:09 CST 2019 Thu Jan 16 16:25:49 CST 2020 15379 12236 testcase test_17_delete_endpoint test_19_delete_region TestDeleteEndpoint TestDeleteRegion test_delete_openstack_endpoint test_delete_region 测试删除openstack,endpoint :return:
11 passed Sat Nov 23 18:56:53 CST 2019 Thu Jan 16 16:21:55 CST 2020 Sat Nov 23 18:57:16 CST 2019 Thu Jan 16 16:22:12 CST 2020 22709 16871 testcase test_16_delete_tenant test_12_delete_vpool TestTenantDelete Test_Vpool_Delete test_delete_tenant test_delete_vpool
12 passed Thu Jan 16 16:22:30 CST 2020 Thu Jan 16 16:22:43 CST 2020 12517 testcase test_14_delete_tenant_user TestDeleteUser test_delete_tenant_user
13 passed Thu Jan 16 16:17:50 CST 2020 Thu Jan 16 16:17:51 CST 2020 509 testcase test_00_login TestLoin test_login
14 passed Thu Jan 16 16:19:07 CST 2020 Thu Jan 16 16:19:16 CST 2020 8866 testcase test_07_create_service TestCreateService test_create_service_vmware
15 passed Thu Jan 16 16:19:30 CST 2020 Thu Jan 16 16:19:37 CST 2020 6748 testcase test_08_create_endpoint TestCreateEndpoint test_vmware_endpoint 测试添加vmware,endpoint 依赖已添加vmware服务 :return:
16 passed Thu Jan 16 16:18:51 CST 2020 Thu Jan 16 16:19:04 CST 2020 13087 testcase test_06_create_region TestCreateRegion test_create_region
17 passed Thu Jan 16 16:17:54 CST 2020 Thu Jan 16 16:18:02 CST 2020 7624 testcase test_01_create_user TestCreateUser test_create_user
18 passed Thu Jan 16 16:21:20 CST 2020 Thu Jan 16 16:21:24 CST 2020 4032 testcase test_10_craete_vdc TestCreateVDC test_create_vdc
19 passed Thu Jan 16 16:23:41 CST 2020 Thu Jan 16 16:23:55 CST 2020 14055 testcase test_17_delete_endpoint TestDeleteEndpoint test_delete_openstack_endpoint 测试删除openstack,endpoint :return:
20 passed Thu Jan 16 16:18:41 CST 2020 Thu Jan 16 16:18:48 CST 2020 7361 testcase test_05_create_project TestProject test_create_project
21 passed Thu Jan 16 16:18:05 CST 2020 Thu Jan 16 16:18:18 CST 2020 12589 testcase test_02_allocation_domain_administrator TestAllDomainAdmin test_allocation_domain_admin
22 passed Thu Jan 16 16:23:24 CST 2020 Thu Jan 16 16:23:38 CST 2020 13991 testcase test_17_delete_endpoint TestDeleteEndpoint test_delete_vmware_endpoint 测试删除vmware,endpoint :return:
23 passed Thu Jan 16 16:18:21 CST 2020 Thu Jan 16 16:18:28 CST 2020 7331 testcase test_03_create_tenant TestTeant test_create
24 passed Thu Jan 16 16:19:19 CST 2020 Thu Jan 16 16:19:27 CST 2020 8582 testcase test_07_create_service TestCreateService test_create_service_openstack
25 passed Thu Jan 16 16:24:45 CST 2020 Thu Jan 16 16:24:56 CST 2020 11765 testcase test_18_delete_service TestDeleteService test_delete_service_openstack
26 passed Thu Jan 16 16:22:46 CST 2020 Thu Jan 16 16:22:58 CST 2020 12246 testcase test_15_delete_project TestProjectDelete test_delete_project
27 passed Thu Jan 16 16:23:01 CST 2020 Thu Jan 16 16:23:21 CST 2020 19845 testcase test_16_delete_tenant TestTenantDelete test_delete_tenant
28
29
30
31
32
33
34
35
36
37
38
39
40
41

View File

@ -9,13 +9,13 @@
"name" : "TestLoin",
"children" : [ {
"name" : "test_login",
"uid" : "19a394864f168501",
"uid" : "f5d245fe2310b545",
"parentUid" : "bbbc2281924bacaf008c07696d94f36e",
"status" : "passed",
"time" : {
"start" : 1574506253731,
"stop" : 1574506257353,
"duration" : 3622
"start" : 1579162670851,
"stop" : 1579162671360,
"duration" : 509
},
"flaky" : false,
"newFailed" : false,
@ -30,13 +30,13 @@
"name" : "TestCreateUser",
"children" : [ {
"name" : "test_create_user",
"uid" : "4fc0240608e24319",
"uid" : "f1c67c3270eb15ae",
"parentUid" : "f34a05e9ef7604919d209c7a756d835f",
"status" : "passed",
"time" : {
"start" : 1574506263797,
"stop" : 1574506273256,
"duration" : 9459
"start" : 1579162674670,
"stop" : 1579162682294,
"duration" : 7624
},
"flaky" : false,
"newFailed" : false,
@ -51,13 +51,13 @@
"name" : "TestAllDomainAdmin",
"children" : [ {
"name" : "test_allocation_domain_admin",
"uid" : "35cd7fadfa3b6d45",
"uid" : "d57f583af3a372a",
"parentUid" : "a1da3b2fba566df3872adae4cadf1f47",
"status" : "passed",
"time" : {
"start" : 1574506280380,
"stop" : 1574506295732,
"duration" : 15352
"start" : 1579162685754,
"stop" : 1579162698343,
"duration" : 12589
},
"flaky" : false,
"newFailed" : false,
@ -72,13 +72,13 @@
"name" : "TestTeant",
"children" : [ {
"name" : "test_create",
"uid" : "c000ad86813c3a0f",
"uid" : "b9ab257d78436e50",
"parentUid" : "1b2e40aa8485ee4c6c99312752c361b6",
"status" : "passed",
"time" : {
"start" : 1574506302338,
"stop" : 1574506313758,
"duration" : 11420
"start" : 1579162701424,
"stop" : 1579162708755,
"duration" : 7331
},
"flaky" : false,
"newFailed" : false,
@ -93,13 +93,13 @@
"name" : "TestCreateUser",
"children" : [ {
"name" : "test_create_authuser",
"uid" : "bb5f5a8766fdbb89",
"uid" : "3fb100e70a290876",
"parentUid" : "7ea94424612cb2649b4855aa88a74db6",
"status" : "passed",
"time" : {
"start" : 1574506320297,
"stop" : 1574506331949,
"duration" : 11652
"start" : 1579162711586,
"stop" : 1579162718650,
"duration" : 7064
},
"flaky" : false,
"newFailed" : false,
@ -114,13 +114,13 @@
"name" : "TestProject",
"children" : [ {
"name" : "test_create_project",
"uid" : "d7aa9d4883ead11f",
"uid" : "65f5f170d7bfdee6",
"parentUid" : "8c9017260b7a97e874f9647ebcd8497f",
"status" : "passed",
"time" : {
"start" : 1574506338364,
"stop" : 1574506347910,
"duration" : 9546
"start" : 1579162721556,
"stop" : 1579162728917,
"duration" : 7361
},
"flaky" : false,
"newFailed" : false,
@ -135,13 +135,13 @@
"name" : "TestCreateRegion",
"children" : [ {
"name" : "test_create_region",
"uid" : "b7b30b914c923a83",
"uid" : "bc9779ab6f399fa9",
"parentUid" : "995312644a1535b6342b351081d0ac98",
"status" : "passed",
"time" : {
"start" : 1574506354398,
"stop" : 1574506370657,
"duration" : 16259
"start" : 1579162731724,
"stop" : 1579162744811,
"duration" : 13087
},
"flaky" : false,
"newFailed" : false,
@ -156,26 +156,26 @@
"name" : "TestCreateService",
"children" : [ {
"name" : "test_create_service_vmware",
"uid" : "587c5f045f639b07",
"uid" : "6b05da19b0648048",
"parentUid" : "b39384e5cb764e2787a156a886d4f35a",
"status" : "passed",
"time" : {
"start" : 1574506380480,
"stop" : 1574506390827,
"duration" : 10347
"start" : 1579162747567,
"stop" : 1579162756433,
"duration" : 8866
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
}, {
"name" : "test_create_service_openstack",
"uid" : "7f5358fe0b0169d7",
"uid" : "c7625209629a1cf2",
"parentUid" : "b39384e5cb764e2787a156a886d4f35a",
"status" : "passed",
"time" : {
"start" : 1574506390831,
"stop" : 1574506399249,
"duration" : 8418
"start" : 1579162759241,
"stop" : 1579162767823,
"duration" : 8582
},
"flaky" : false,
"newFailed" : false,
@ -190,26 +190,26 @@
"name" : "TestCreateEndpoint",
"children" : [ {
"name" : "test_vmware_endpoint",
"uid" : "bb3a954ab9b49b9d",
"uid" : "8ad3da85ff598445",
"parentUid" : "8aa28c552cac994e03e35a00f9b508da",
"status" : "passed",
"time" : {
"start" : 1574506409003,
"stop" : 1574506416227,
"duration" : 7224
"start" : 1579162770579,
"stop" : 1579162777327,
"duration" : 6748
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
}, {
"name" : "test_openstack_endpoint",
"uid" : "297b00c7b8c77be6",
"uid" : "b086823789b2ef34",
"parentUid" : "8aa28c552cac994e03e35a00f9b508da",
"status" : "passed",
"time" : {
"start" : 1574506426975,
"stop" : 1574506434120,
"duration" : 7145
"start" : 1579162780532,
"stop" : 1579162787368,
"duration" : 6836
},
"flaky" : false,
"newFailed" : false,
@ -224,13 +224,13 @@
"name" : "TestPhySunc",
"children" : [ {
"name" : "test_sync_phy_res",
"uid" : "697b9f1432778037",
"uid" : "84f53e39b9cb2047",
"parentUid" : "5a91b85ae4e9bf49e689652d981dd828",
"status" : "passed",
"time" : {
"start" : 1574506440564,
"stop" : 1574506471585,
"duration" : 31021
"start" : 1579162790198,
"stop" : 1579162878050,
"duration" : 87852
},
"flaky" : false,
"newFailed" : false,
@ -245,13 +245,13 @@
"name" : "TestCreateVDC",
"children" : [ {
"name" : "test_create_vdc",
"uid" : "575284bcd51deff",
"uid" : "10f60f461394b1aa",
"parentUid" : "5b975d9664c786b9746c51f3a1118b5e",
"status" : "passed",
"time" : {
"start" : 1574506477914,
"stop" : 1574506486849,
"duration" : 8935
"start" : 1579162880914,
"stop" : 1579162884946,
"duration" : 4032
},
"flaky" : false,
"newFailed" : false,
@ -266,13 +266,13 @@
"name" : "TestCreateVpool",
"children" : [ {
"name" : "test_create_vpool",
"uid" : "28d951403b7851ff",
"uid" : "8d3a5a8630286d34",
"parentUid" : "5d9a38e278416a0c0e3beaccdfea60a8",
"status" : "passed",
"time" : {
"start" : 1574506493148,
"stop" : 1574506508615,
"duration" : 15467
"start" : 1579162887747,
"stop" : 1579162898635,
"duration" : 10888
},
"flaky" : false,
"newFailed" : false,
@ -287,13 +287,13 @@
"name" : "Test_Vpool_Delete",
"children" : [ {
"name" : "test_delete_vpool",
"uid" : "d423a3baa8731b25",
"uid" : "2a340e3f64f5b481",
"parentUid" : "25b4377e57a6c80ee952d3dbfb11c8ed",
"status" : "passed",
"time" : {
"start" : 1574506515581,
"stop" : 1574506537478,
"duration" : 21897
"start" : 1579162915840,
"stop" : 1579162932711,
"duration" : 16871
},
"flaky" : false,
"newFailed" : false,
@ -308,13 +308,13 @@
"name" : "Test_Vpool_Vdc",
"children" : [ {
"name" : "test_delete_vdc",
"uid" : "823059517e214f96",
"uid" : "46ad6b86d50836f4",
"parentUid" : "8353bbf5e7cb0477add0d2ddfdd4e18e",
"status" : "passed",
"time" : {
"start" : 1574506543831,
"stop" : 1574506560611,
"duration" : 16780
"start" : 1579162935756,
"stop" : 1579162947552,
"duration" : 11796
},
"flaky" : false,
"newFailed" : false,
@ -329,13 +329,13 @@
"name" : "TestDeleteUser",
"children" : [ {
"name" : "test_delete_tenant_user",
"uid" : "c93ee7a16721428a",
"uid" : "74e0c88293fb407a",
"parentUid" : "460c70dc69d07cddce414bed3c38f782",
"status" : "passed",
"time" : {
"start" : 1574506566897,
"stop" : 1574506584279,
"duration" : 17382
"start" : 1579162950663,
"stop" : 1579162963180,
"duration" : 12517
},
"flaky" : false,
"newFailed" : false,
@ -350,13 +350,13 @@
"name" : "TestProjectDelete",
"children" : [ {
"name" : "test_delete_project",
"uid" : "65e0ab8417d62758",
"uid" : "664311dc70ba901d",
"parentUid" : "302796f33220bc9f1f9fce32be55a734",
"status" : "passed",
"time" : {
"start" : 1574506590948,
"stop" : 1574506607538,
"duration" : 16590
"start" : 1579162966096,
"stop" : 1579162978342,
"duration" : 12246
},
"flaky" : false,
"newFailed" : false,
@ -371,13 +371,13 @@
"name" : "TestTenantDelete",
"children" : [ {
"name" : "test_delete_tenant",
"uid" : "533e5d07cadf6732",
"uid" : "f2c50489b1f8515a",
"parentUid" : "d5d494320db7fbd27a9bfc5cd816dc2b",
"status" : "passed",
"time" : {
"start" : 1574506613914,
"stop" : 1574506636623,
"duration" : 22709
"start" : 1579162981435,
"stop" : 1579163001280,
"duration" : 19845
},
"flaky" : false,
"newFailed" : false,
@ -392,26 +392,26 @@
"name" : "TestDeleteEndpoint",
"children" : [ {
"name" : "test_delete_vmware_endpoint",
"uid" : "c6a7aa5b9d186c62",
"uid" : "aa1ed28b06d12b2d",
"parentUid" : "9facd302958b09442641dac59ebd0cc6",
"status" : "passed",
"time" : {
"start" : 1574506646427,
"stop" : 1574506661362,
"duration" : 14935
"start" : 1579163004135,
"stop" : 1579163018126,
"duration" : 13991
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
}, {
"name" : "test_delete_openstack_endpoint",
"uid" : "ce95a572397b4f3d",
"uid" : "c346293772d84211",
"parentUid" : "9facd302958b09442641dac59ebd0cc6",
"status" : "passed",
"time" : {
"start" : 1574506674361,
"stop" : 1574506689740,
"duration" : 15379
"start" : 1579163021120,
"stop" : 1579163035175,
"duration" : 14055
},
"flaky" : false,
"newFailed" : false,
@ -426,26 +426,26 @@
"name" : "TestDeleteService",
"children" : [ {
"name" : "test_delete_service_vmware",
"uid" : "19156baa30983d",
"uid" : "db3fe1ca66285ffa",
"parentUid" : "9e0c97342de6e5c113923dc0c4b39185",
"status" : "passed",
"status" : "broken",
"time" : {
"start" : 1574506699479,
"stop" : 1574506712430,
"duration" : 12951
"start" : 1579163072450,
"stop" : 1579163082403,
"duration" : 9953
},
"flaky" : false,
"newFailed" : false,
"parameters" : [ ]
}, {
"name" : "test_delete_service_openstack",
"uid" : "737ae62fda27cd94",
"uid" : "50a56dd22e7c119",
"parentUid" : "9e0c97342de6e5c113923dc0c4b39185",
"status" : "passed",
"time" : {
"start" : 1574506712435,
"stop" : 1574506723732,
"duration" : 11297
"start" : 1579163085223,
"stop" : 1579163096988,
"duration" : 11765
},
"flaky" : false,
"newFailed" : false,
@ -460,13 +460,13 @@
"name" : "TestDeleteRegion",
"children" : [ {
"name" : "test_delete_region",
"uid" : "286852177ac0a235",
"uid" : "436f76e61b4e0c55",
"parentUid" : "7669deae6f8d88073bcd066e7d8be832",
"status" : "passed",
"status" : "broken",
"time" : {
"start" : 1574506730097,
"stop" : 1574506745099,
"duration" : 15002
"start" : 1579163137217,
"stop" : 1579163149453,
"duration" : 12236
},
"flaky" : false,
"newFailed" : false,
@ -481,13 +481,13 @@
"name" : "TestRemoveDomainAdmin",
"children" : [ {
"name" : "test_remove_domain_admin",
"uid" : "2bf2bda0f080a38e",
"uid" : "4adcc8ea475edcd3",
"parentUid" : "76212fa445dc6168420bd29ba2e160d9",
"status" : "passed",
"time" : {
"start" : 1574506751447,
"stop" : 1574506762108,
"duration" : 10661
"start" : 1579163152368,
"stop" : 1579163160168,
"duration" : 7800
},
"flaky" : false,
"newFailed" : false,
@ -502,13 +502,13 @@
"name" : "TestDeleteUser",
"children" : [ {
"name" : "test_delete_user",
"uid" : "b655838b11e6c33c",
"uid" : "956f193c6ed2b8a3",
"parentUid" : "8d9ed961358467858321d291bf25810a",
"status" : "passed",
"time" : {
"start" : 1574506768464,
"stop" : 1574506783805,
"duration" : 15341
"start" : 1579163163083,
"stop" : 1579163174910,
"duration" : 11827
},
"flaky" : false,
"newFailed" : false,

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,12 @@
launch_status failed=0 1574514746000000000
launch_status broken=0 1574514746000000000
launch_status passed=26 1574514746000000000
launch_status skipped=0 1574514746000000000
launch_status unknown=0 1574514746000000000
launch_time duration=530074 1574514746000000000
launch_time min_duration=3622 1574514746000000000
launch_time max_duration=31021 1574514746000000000
launch_time sum_duration=356791 1574514746000000000
launch_retries retries=1161 1574514746000000000
launch_retries run=26 1574514746000000000
launch_status failed=0 1579163181000000000
launch_status broken=2 1579163181000000000
launch_status passed=24 1579163181000000000
launch_status skipped=0 1579163181000000000
launch_status unknown=0 1579163181000000000
launch_time duration=504059 1579163181000000000
launch_time min_duration=509 1579163181000000000
launch_time max_duration=87852 1579163181000000000
launch_time sum_duration=344271 1579163181000000000
launch_problems test_defects=2 1579163181000000000
launch_retries retries=9 1579163181000000000
launch_retries run=26 1579163181000000000

View File

@ -1,11 +1,12 @@
launch_status_failed 0
launch_status_broken 0
launch_status_passed 26
launch_status_broken 2
launch_status_passed 24
launch_status_skipped 0
launch_status_unknown 0
launch_time_duration 530074
launch_time_min_duration 3622
launch_time_max_duration 31021
launch_time_sum_duration 356791
launch_retries_retries 1161
launch_time_duration 504059
launch_time_min_duration 509
launch_time_max_duration 87852
launch_time_sum_duration 344271
launch_problems_test_defects 2
launch_retries_retries 9
launch_retries_run 26

View File

@ -1,13 +1,5 @@
[ {
"data" : { }
}, {
"data" : {
"Product defects" : 1,
"Test defects" : 2
}
}, {
"data" : {
"Product defects" : 2,
"Test defects" : 4
}
} ]

View File

@ -1,13 +1,5 @@
[ {
"data" : {
"duration" : 530074
}
}, {
"data" : {
"duration" : 755585
}
}, {
"data" : {
"duration" : 840597
"duration" : 504059
}
} ]

View File

@ -1,27 +1,9 @@
[ {
"data" : {
"failed" : 0,
"broken" : 0,
"skipped" : 0,
"passed" : 26,
"unknown" : 0,
"total" : 26
}
}, {
"data" : {
"failed" : 1,
"broken" : 2,
"skipped" : 0,
"passed" : 23,
"unknown" : 0,
"total" : 26
}
}, {
"data" : {
"failed" : 2,
"broken" : 4,
"skipped" : 0,
"passed" : 20,
"passed" : 24,
"unknown" : 0,
"total" : 26
}

File diff suppressed because it is too large Load Diff

View File

@ -1,16 +1,6 @@
[ {
"data" : {
"run" : 26,
"retry" : 1161
}
}, {
"data" : {
"run" : 26,
"retry" : 1133
}
}, {
"data" : {
"run" : 26,
"retry" : 1097
"retry" : 9
}
} ]

View File

@ -5,9 +5,9 @@
"name" : "资源节点管理",
"statistic" : {
"failed" : 0,
"broken" : 0,
"broken" : 2,
"skipped" : 0,
"passed" : 10,
"passed" : 8,
"unknown" : 0,
"total" : 10
}

View File

@ -1,13 +1,5 @@
[ {
"data" : { }
}, {
"data" : {
"Product defects" : 1,
"Test defects" : 2
}
}, {
"data" : {
"Product defects" : 2,
"Test defects" : 4
}
} ]

View File

@ -1,4 +1,15 @@
{
"total" : 0,
"items" : [ ]
"total" : 1,
"items" : [ {
"uid" : "bdbf199525818fae7a8651db9eafe741",
"name" : "Test defects",
"statistic" : {
"failed" : 0,
"broken" : 2,
"skipped" : 0,
"passed" : 0,
"unknown" : 0,
"total" : 2
}
} ]
}

View File

@ -1,13 +1,5 @@
[ {
"data" : {
"duration" : 530074
}
}, {
"data" : {
"duration" : 755585
}
}, {
"data" : {
"duration" : 840597
"duration" : 504059
}
} ]

View File

@ -1,260 +1,260 @@
[ {
"uid" : "b655838b11e6c33c",
"name" : "test_delete_user",
"time" : {
"start" : 1574506768464,
"stop" : 1574506783805,
"duration" : 15341
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "bb5f5a8766fdbb89",
"name" : "test_create_authuser",
"time" : {
"start" : 1574506320297,
"stop" : 1574506331949,
"duration" : 11652
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "286852177ac0a235",
"name" : "test_delete_region",
"time" : {
"start" : 1574506730097,
"stop" : 1574506745099,
"duration" : 15002
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "4fc0240608e24319",
"name" : "test_create_user",
"time" : {
"start" : 1574506263797,
"stop" : 1574506273256,
"duration" : 9459
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "697b9f1432778037",
"name" : "test_sync_phy_res",
"time" : {
"start" : 1574506440564,
"stop" : 1574506471585,
"duration" : 31021
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "2bf2bda0f080a38e",
"name" : "test_remove_domain_admin",
"time" : {
"start" : 1574506751447,
"stop" : 1574506762108,
"duration" : 10661
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d423a3baa8731b25",
"name" : "test_delete_vpool",
"time" : {
"start" : 1574506515581,
"stop" : 1574506537478,
"duration" : 21897
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "b7b30b914c923a83",
"name" : "test_create_region",
"time" : {
"start" : 1574506354398,
"stop" : 1574506370657,
"duration" : 16259
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "7f5358fe0b0169d7",
"name" : "test_create_service_openstack",
"time" : {
"start" : 1574506390831,
"stop" : 1574506399249,
"duration" : 8418
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "587c5f045f639b07",
"name" : "test_create_service_vmware",
"time" : {
"start" : 1574506380480,
"stop" : 1574506390827,
"duration" : 10347
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d7aa9d4883ead11f",
"name" : "test_create_project",
"time" : {
"start" : 1574506338364,
"stop" : 1574506347910,
"duration" : 9546
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "823059517e214f96",
"name" : "test_delete_vdc",
"time" : {
"start" : 1574506543831,
"stop" : 1574506560611,
"duration" : 16780
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c6a7aa5b9d186c62",
"name" : "test_delete_vmware_endpoint",
"time" : {
"start" : 1574506646427,
"stop" : 1574506661362,
"duration" : 14935
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "297b00c7b8c77be6",
"uid" : "b086823789b2ef34",
"name" : "test_openstack_endpoint",
"time" : {
"start" : 1574506426975,
"stop" : 1574506434120,
"duration" : 7145
"start" : 1579162780532,
"stop" : 1579162787368,
"duration" : 6836
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "19156baa30983d",
"name" : "test_delete_service_vmware",
"time" : {
"start" : 1574506699479,
"stop" : 1574506712430,
"duration" : 12951
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c93ee7a16721428a",
"name" : "test_delete_tenant_user",
"time" : {
"start" : 1574506566897,
"stop" : 1574506584279,
"duration" : 17382
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c000ad86813c3a0f",
"name" : "test_create",
"time" : {
"start" : 1574506302338,
"stop" : 1574506313758,
"duration" : 11420
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "575284bcd51deff",
"name" : "test_create_vdc",
"time" : {
"start" : 1574506477914,
"stop" : 1574506486849,
"duration" : 8935
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "737ae62fda27cd94",
"name" : "test_delete_service_openstack",
"time" : {
"start" : 1574506712435,
"stop" : 1574506723732,
"duration" : 11297
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "19a394864f168501",
"name" : "test_login",
"time" : {
"start" : 1574506253731,
"stop" : 1574506257353,
"duration" : 3622
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "35cd7fadfa3b6d45",
"name" : "test_allocation_domain_admin",
"time" : {
"start" : 1574506280380,
"stop" : 1574506295732,
"duration" : 15352
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "65e0ab8417d62758",
"name" : "test_delete_project",
"time" : {
"start" : 1574506590948,
"stop" : 1574506607538,
"duration" : 16590
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "28d951403b7851ff",
"uid" : "8d3a5a8630286d34",
"name" : "test_create_vpool",
"time" : {
"start" : 1574506493148,
"stop" : 1574506508615,
"duration" : 15467
"start" : 1579162887747,
"stop" : 1579162898635,
"duration" : 10888
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "bb3a954ab9b49b9d",
"uid" : "db3fe1ca66285ffa",
"name" : "test_delete_service_vmware",
"time" : {
"start" : 1579163072450,
"stop" : 1579163082403,
"duration" : 9953
},
"status" : "broken",
"severity" : "normal"
}, {
"uid" : "3fb100e70a290876",
"name" : "test_create_authuser",
"time" : {
"start" : 1579162711586,
"stop" : 1579162718650,
"duration" : 7064
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "956f193c6ed2b8a3",
"name" : "test_delete_user",
"time" : {
"start" : 1579163163083,
"stop" : 1579163174910,
"duration" : 11827
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "84f53e39b9cb2047",
"name" : "test_sync_phy_res",
"time" : {
"start" : 1579162790198,
"stop" : 1579162878050,
"duration" : 87852
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "46ad6b86d50836f4",
"name" : "test_delete_vdc",
"time" : {
"start" : 1579162935756,
"stop" : 1579162947552,
"duration" : 11796
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "4adcc8ea475edcd3",
"name" : "test_remove_domain_admin",
"time" : {
"start" : 1579163152368,
"stop" : 1579163160168,
"duration" : 7800
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "436f76e61b4e0c55",
"name" : "test_delete_region",
"time" : {
"start" : 1579163137217,
"stop" : 1579163149453,
"duration" : 12236
},
"status" : "broken",
"severity" : "normal"
}, {
"uid" : "2a340e3f64f5b481",
"name" : "test_delete_vpool",
"time" : {
"start" : 1579162915840,
"stop" : 1579162932711,
"duration" : 16871
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "74e0c88293fb407a",
"name" : "test_delete_tenant_user",
"time" : {
"start" : 1579162950663,
"stop" : 1579162963180,
"duration" : 12517
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f5d245fe2310b545",
"name" : "test_login",
"time" : {
"start" : 1579162670851,
"stop" : 1579162671360,
"duration" : 509
},
"status" : "passed",
"severity" : "blocker"
}, {
"uid" : "6b05da19b0648048",
"name" : "test_create_service_vmware",
"time" : {
"start" : 1579162747567,
"stop" : 1579162756433,
"duration" : 8866
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "8ad3da85ff598445",
"name" : "test_vmware_endpoint",
"time" : {
"start" : 1574506409003,
"stop" : 1574506416227,
"duration" : 7224
"start" : 1579162770579,
"stop" : 1579162777327,
"duration" : 6748
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "ce95a572397b4f3d",
"uid" : "bc9779ab6f399fa9",
"name" : "test_create_region",
"time" : {
"start" : 1579162731724,
"stop" : 1579162744811,
"duration" : 13087
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f1c67c3270eb15ae",
"name" : "test_create_user",
"time" : {
"start" : 1579162674670,
"stop" : 1579162682294,
"duration" : 7624
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "10f60f461394b1aa",
"name" : "test_create_vdc",
"time" : {
"start" : 1579162880914,
"stop" : 1579162884946,
"duration" : 4032
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c346293772d84211",
"name" : "test_delete_openstack_endpoint",
"time" : {
"start" : 1574506674361,
"stop" : 1574506689740,
"duration" : 15379
"start" : 1579163021120,
"stop" : 1579163035175,
"duration" : 14055
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "533e5d07cadf6732",
"uid" : "65f5f170d7bfdee6",
"name" : "test_create_project",
"time" : {
"start" : 1579162721556,
"stop" : 1579162728917,
"duration" : 7361
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d57f583af3a372a",
"name" : "test_allocation_domain_admin",
"time" : {
"start" : 1579162685754,
"stop" : 1579162698343,
"duration" : 12589
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "aa1ed28b06d12b2d",
"name" : "test_delete_vmware_endpoint",
"time" : {
"start" : 1579163004135,
"stop" : 1579163018126,
"duration" : 13991
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "b9ab257d78436e50",
"name" : "test_create",
"time" : {
"start" : 1579162701424,
"stop" : 1579162708755,
"duration" : 7331
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c7625209629a1cf2",
"name" : "test_create_service_openstack",
"time" : {
"start" : 1579162759241,
"stop" : 1579162767823,
"duration" : 8582
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "50a56dd22e7c119",
"name" : "test_delete_service_openstack",
"time" : {
"start" : 1579163085223,
"stop" : 1579163096988,
"duration" : 11765
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "664311dc70ba901d",
"name" : "test_delete_project",
"time" : {
"start" : 1579162966096,
"stop" : 1579162978342,
"duration" : 12246
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f2c50489b1f8515a",
"name" : "test_delete_tenant",
"time" : {
"start" : 1574506613914,
"stop" : 1574506636623,
"duration" : 22709
"start" : 1579162981435,
"stop" : 1579163001280,
"duration" : 19845
},
"status" : "passed",
"severity" : "normal"

View File

@ -1,27 +1,9 @@
[ {
"data" : {
"failed" : 0,
"broken" : 0,
"skipped" : 0,
"passed" : 26,
"unknown" : 0,
"total" : 26
}
}, {
"data" : {
"failed" : 1,
"broken" : 2,
"skipped" : 0,
"passed" : 23,
"unknown" : 0,
"total" : 26
}
}, {
"data" : {
"failed" : 2,
"broken" : 4,
"skipped" : 0,
"passed" : 20,
"passed" : 24,
"unknown" : 0,
"total" : 26
}

View File

@ -1,16 +1,6 @@
[ {
"data" : {
"run" : 26,
"retry" : 1161
}
}, {
"data" : {
"run" : 26,
"retry" : 1133
}
}, {
"data" : {
"run" : 26,
"retry" : 1097
"retry" : 9
}
} ]

View File

@ -1,260 +1,260 @@
[ {
"uid" : "4fc0240608e24319",
"name" : "test_create_user",
"time" : {
"start" : 1574506263797,
"stop" : 1574506273256,
"duration" : 9459
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "b7b30b914c923a83",
"name" : "test_create_region",
"time" : {
"start" : 1574506354398,
"stop" : 1574506370657,
"duration" : 16259
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "19156baa30983d",
"name" : "test_delete_service_vmware",
"time" : {
"start" : 1574506699479,
"stop" : 1574506712430,
"duration" : 12951
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "737ae62fda27cd94",
"name" : "test_delete_service_openstack",
"time" : {
"start" : 1574506712435,
"stop" : 1574506723732,
"duration" : 11297
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "35cd7fadfa3b6d45",
"name" : "test_allocation_domain_admin",
"time" : {
"start" : 1574506280380,
"stop" : 1574506295732,
"duration" : 15352
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "ce95a572397b4f3d",
"name" : "test_delete_openstack_endpoint",
"time" : {
"start" : 1574506674361,
"stop" : 1574506689740,
"duration" : 15379
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c000ad86813c3a0f",
"name" : "test_create",
"time" : {
"start" : 1574506302338,
"stop" : 1574506313758,
"duration" : 11420
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "587c5f045f639b07",
"name" : "test_create_service_vmware",
"time" : {
"start" : 1574506380480,
"stop" : 1574506390827,
"duration" : 10347
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "19a394864f168501",
"name" : "test_login",
"time" : {
"start" : 1574506253731,
"stop" : 1574506257353,
"duration" : 3622
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "286852177ac0a235",
"name" : "test_delete_region",
"time" : {
"start" : 1574506730097,
"stop" : 1574506745099,
"duration" : 15002
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d7aa9d4883ead11f",
"name" : "test_create_project",
"time" : {
"start" : 1574506338364,
"stop" : 1574506347910,
"duration" : 9546
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "297b00c7b8c77be6",
"name" : "test_openstack_endpoint",
"time" : {
"start" : 1574506426975,
"stop" : 1574506434120,
"duration" : 7145
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d423a3baa8731b25",
"uid" : "2a340e3f64f5b481",
"name" : "test_delete_vpool",
"time" : {
"start" : 1574506515581,
"stop" : 1574506537478,
"duration" : 21897
"start" : 1579162915840,
"stop" : 1579162932711,
"duration" : 16871
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "533e5d07cadf6732",
"name" : "test_delete_tenant",
"time" : {
"start" : 1574506613914,
"stop" : 1574506636623,
"duration" : 22709
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "b655838b11e6c33c",
"uid" : "956f193c6ed2b8a3",
"name" : "test_delete_user",
"time" : {
"start" : 1574506768464,
"stop" : 1574506783805,
"duration" : 15341
"start" : 1579163163083,
"stop" : 1579163174910,
"duration" : 11827
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "697b9f1432778037",
"name" : "test_sync_phy_res",
"time" : {
"start" : 1574506440564,
"stop" : 1574506471585,
"duration" : 31021
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "7f5358fe0b0169d7",
"name" : "test_create_service_openstack",
"time" : {
"start" : 1574506390831,
"stop" : 1574506399249,
"duration" : 8418
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "2bf2bda0f080a38e",
"name" : "test_remove_domain_admin",
"time" : {
"start" : 1574506751447,
"stop" : 1574506762108,
"duration" : 10661
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "bb5f5a8766fdbb89",
"name" : "test_create_authuser",
"time" : {
"start" : 1574506320297,
"stop" : 1574506331949,
"duration" : 11652
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "bb3a954ab9b49b9d",
"name" : "test_vmware_endpoint",
"time" : {
"start" : 1574506409003,
"stop" : 1574506416227,
"duration" : 7224
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "65e0ab8417d62758",
"name" : "test_delete_project",
"time" : {
"start" : 1574506590948,
"stop" : 1574506607538,
"duration" : 16590
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "575284bcd51deff",
"name" : "test_create_vdc",
"time" : {
"start" : 1574506477914,
"stop" : 1574506486849,
"duration" : 8935
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c6a7aa5b9d186c62",
"name" : "test_delete_vmware_endpoint",
"time" : {
"start" : 1574506646427,
"stop" : 1574506661362,
"duration" : 14935
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c93ee7a16721428a",
"uid" : "74e0c88293fb407a",
"name" : "test_delete_tenant_user",
"time" : {
"start" : 1574506566897,
"stop" : 1574506584279,
"duration" : 17382
"start" : 1579162950663,
"stop" : 1579162963180,
"duration" : 12517
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "823059517e214f96",
"uid" : "c7625209629a1cf2",
"name" : "test_create_service_openstack",
"time" : {
"start" : 1579162759241,
"stop" : 1579162767823,
"duration" : 8582
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "664311dc70ba901d",
"name" : "test_delete_project",
"time" : {
"start" : 1579162966096,
"stop" : 1579162978342,
"duration" : 12246
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f2c50489b1f8515a",
"name" : "test_delete_tenant",
"time" : {
"start" : 1579162981435,
"stop" : 1579163001280,
"duration" : 19845
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "50a56dd22e7c119",
"name" : "test_delete_service_openstack",
"time" : {
"start" : 1579163085223,
"stop" : 1579163096988,
"duration" : 11765
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f5d245fe2310b545",
"name" : "test_login",
"time" : {
"start" : 1579162670851,
"stop" : 1579162671360,
"duration" : 509
},
"status" : "passed",
"severity" : "blocker"
}, {
"uid" : "aa1ed28b06d12b2d",
"name" : "test_delete_vmware_endpoint",
"time" : {
"start" : 1579163004135,
"stop" : 1579163018126,
"duration" : 13991
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "b9ab257d78436e50",
"name" : "test_create",
"time" : {
"start" : 1579162701424,
"stop" : 1579162708755,
"duration" : 7331
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "db3fe1ca66285ffa",
"name" : "test_delete_service_vmware",
"time" : {
"start" : 1579163072450,
"stop" : 1579163082403,
"duration" : 9953
},
"status" : "broken",
"severity" : "normal"
}, {
"uid" : "6b05da19b0648048",
"name" : "test_create_service_vmware",
"time" : {
"start" : 1579162747567,
"stop" : 1579162756433,
"duration" : 8866
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d57f583af3a372a",
"name" : "test_allocation_domain_admin",
"time" : {
"start" : 1579162685754,
"stop" : 1579162698343,
"duration" : 12589
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "65f5f170d7bfdee6",
"name" : "test_create_project",
"time" : {
"start" : 1579162721556,
"stop" : 1579162728917,
"duration" : 7361
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "436f76e61b4e0c55",
"name" : "test_delete_region",
"time" : {
"start" : 1579163137217,
"stop" : 1579163149453,
"duration" : 12236
},
"status" : "broken",
"severity" : "normal"
}, {
"uid" : "3fb100e70a290876",
"name" : "test_create_authuser",
"time" : {
"start" : 1579162711586,
"stop" : 1579162718650,
"duration" : 7064
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "8ad3da85ff598445",
"name" : "test_vmware_endpoint",
"time" : {
"start" : 1579162770579,
"stop" : 1579162777327,
"duration" : 6748
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "10f60f461394b1aa",
"name" : "test_create_vdc",
"time" : {
"start" : 1579162880914,
"stop" : 1579162884946,
"duration" : 4032
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c346293772d84211",
"name" : "test_delete_openstack_endpoint",
"time" : {
"start" : 1579163021120,
"stop" : 1579163035175,
"duration" : 14055
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "bc9779ab6f399fa9",
"name" : "test_create_region",
"time" : {
"start" : 1579162731724,
"stop" : 1579162744811,
"duration" : 13087
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f1c67c3270eb15ae",
"name" : "test_create_user",
"time" : {
"start" : 1579162674670,
"stop" : 1579162682294,
"duration" : 7624
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "4adcc8ea475edcd3",
"name" : "test_remove_domain_admin",
"time" : {
"start" : 1579163152368,
"stop" : 1579163160168,
"duration" : 7800
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "46ad6b86d50836f4",
"name" : "test_delete_vdc",
"time" : {
"start" : 1574506543831,
"stop" : 1574506560611,
"duration" : 16780
"start" : 1579162935756,
"stop" : 1579162947552,
"duration" : 11796
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "28d951403b7851ff",
"uid" : "8d3a5a8630286d34",
"name" : "test_create_vpool",
"time" : {
"start" : 1574506493148,
"stop" : 1574506508615,
"duration" : 15467
"start" : 1579162887747,
"stop" : 1579162898635,
"duration" : 10888
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "84f53e39b9cb2047",
"name" : "test_sync_phy_res",
"time" : {
"start" : 1579162790198,
"stop" : 1579162878050,
"duration" : 87852
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "b086823789b2ef34",
"name" : "test_openstack_endpoint",
"time" : {
"start" : 1579162780532,
"stop" : 1579162787368,
"duration" : 6836
},
"status" : "passed",
"severity" : "normal"

View File

@ -1,260 +1,260 @@
[ {
"uid" : "b655838b11e6c33c",
"name" : "test_delete_user",
"time" : {
"start" : 1574506768464,
"stop" : 1574506783805,
"duration" : 15341
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "bb5f5a8766fdbb89",
"name" : "test_create_authuser",
"time" : {
"start" : 1574506320297,
"stop" : 1574506331949,
"duration" : 11652
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "286852177ac0a235",
"name" : "test_delete_region",
"time" : {
"start" : 1574506730097,
"stop" : 1574506745099,
"duration" : 15002
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "4fc0240608e24319",
"name" : "test_create_user",
"time" : {
"start" : 1574506263797,
"stop" : 1574506273256,
"duration" : 9459
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "697b9f1432778037",
"name" : "test_sync_phy_res",
"time" : {
"start" : 1574506440564,
"stop" : 1574506471585,
"duration" : 31021
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "2bf2bda0f080a38e",
"name" : "test_remove_domain_admin",
"time" : {
"start" : 1574506751447,
"stop" : 1574506762108,
"duration" : 10661
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d423a3baa8731b25",
"name" : "test_delete_vpool",
"time" : {
"start" : 1574506515581,
"stop" : 1574506537478,
"duration" : 21897
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "b7b30b914c923a83",
"name" : "test_create_region",
"time" : {
"start" : 1574506354398,
"stop" : 1574506370657,
"duration" : 16259
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "7f5358fe0b0169d7",
"name" : "test_create_service_openstack",
"time" : {
"start" : 1574506390831,
"stop" : 1574506399249,
"duration" : 8418
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "587c5f045f639b07",
"name" : "test_create_service_vmware",
"time" : {
"start" : 1574506380480,
"stop" : 1574506390827,
"duration" : 10347
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d7aa9d4883ead11f",
"name" : "test_create_project",
"time" : {
"start" : 1574506338364,
"stop" : 1574506347910,
"duration" : 9546
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "823059517e214f96",
"name" : "test_delete_vdc",
"time" : {
"start" : 1574506543831,
"stop" : 1574506560611,
"duration" : 16780
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c6a7aa5b9d186c62",
"name" : "test_delete_vmware_endpoint",
"time" : {
"start" : 1574506646427,
"stop" : 1574506661362,
"duration" : 14935
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "297b00c7b8c77be6",
"uid" : "b086823789b2ef34",
"name" : "test_openstack_endpoint",
"time" : {
"start" : 1574506426975,
"stop" : 1574506434120,
"duration" : 7145
"start" : 1579162780532,
"stop" : 1579162787368,
"duration" : 6836
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "19156baa30983d",
"name" : "test_delete_service_vmware",
"time" : {
"start" : 1574506699479,
"stop" : 1574506712430,
"duration" : 12951
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c93ee7a16721428a",
"name" : "test_delete_tenant_user",
"time" : {
"start" : 1574506566897,
"stop" : 1574506584279,
"duration" : 17382
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c000ad86813c3a0f",
"name" : "test_create",
"time" : {
"start" : 1574506302338,
"stop" : 1574506313758,
"duration" : 11420
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "575284bcd51deff",
"name" : "test_create_vdc",
"time" : {
"start" : 1574506477914,
"stop" : 1574506486849,
"duration" : 8935
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "737ae62fda27cd94",
"name" : "test_delete_service_openstack",
"time" : {
"start" : 1574506712435,
"stop" : 1574506723732,
"duration" : 11297
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "19a394864f168501",
"name" : "test_login",
"time" : {
"start" : 1574506253731,
"stop" : 1574506257353,
"duration" : 3622
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "35cd7fadfa3b6d45",
"name" : "test_allocation_domain_admin",
"time" : {
"start" : 1574506280380,
"stop" : 1574506295732,
"duration" : 15352
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "65e0ab8417d62758",
"name" : "test_delete_project",
"time" : {
"start" : 1574506590948,
"stop" : 1574506607538,
"duration" : 16590
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "28d951403b7851ff",
"uid" : "8d3a5a8630286d34",
"name" : "test_create_vpool",
"time" : {
"start" : 1574506493148,
"stop" : 1574506508615,
"duration" : 15467
"start" : 1579162887747,
"stop" : 1579162898635,
"duration" : 10888
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "bb3a954ab9b49b9d",
"uid" : "db3fe1ca66285ffa",
"name" : "test_delete_service_vmware",
"time" : {
"start" : 1579163072450,
"stop" : 1579163082403,
"duration" : 9953
},
"status" : "broken",
"severity" : "normal"
}, {
"uid" : "3fb100e70a290876",
"name" : "test_create_authuser",
"time" : {
"start" : 1579162711586,
"stop" : 1579162718650,
"duration" : 7064
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "956f193c6ed2b8a3",
"name" : "test_delete_user",
"time" : {
"start" : 1579163163083,
"stop" : 1579163174910,
"duration" : 11827
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "84f53e39b9cb2047",
"name" : "test_sync_phy_res",
"time" : {
"start" : 1579162790198,
"stop" : 1579162878050,
"duration" : 87852
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "46ad6b86d50836f4",
"name" : "test_delete_vdc",
"time" : {
"start" : 1579162935756,
"stop" : 1579162947552,
"duration" : 11796
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "4adcc8ea475edcd3",
"name" : "test_remove_domain_admin",
"time" : {
"start" : 1579163152368,
"stop" : 1579163160168,
"duration" : 7800
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "436f76e61b4e0c55",
"name" : "test_delete_region",
"time" : {
"start" : 1579163137217,
"stop" : 1579163149453,
"duration" : 12236
},
"status" : "broken",
"severity" : "normal"
}, {
"uid" : "2a340e3f64f5b481",
"name" : "test_delete_vpool",
"time" : {
"start" : 1579162915840,
"stop" : 1579162932711,
"duration" : 16871
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "74e0c88293fb407a",
"name" : "test_delete_tenant_user",
"time" : {
"start" : 1579162950663,
"stop" : 1579162963180,
"duration" : 12517
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f5d245fe2310b545",
"name" : "test_login",
"time" : {
"start" : 1579162670851,
"stop" : 1579162671360,
"duration" : 509
},
"status" : "passed",
"severity" : "blocker"
}, {
"uid" : "6b05da19b0648048",
"name" : "test_create_service_vmware",
"time" : {
"start" : 1579162747567,
"stop" : 1579162756433,
"duration" : 8866
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "8ad3da85ff598445",
"name" : "test_vmware_endpoint",
"time" : {
"start" : 1574506409003,
"stop" : 1574506416227,
"duration" : 7224
"start" : 1579162770579,
"stop" : 1579162777327,
"duration" : 6748
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "ce95a572397b4f3d",
"uid" : "bc9779ab6f399fa9",
"name" : "test_create_region",
"time" : {
"start" : 1579162731724,
"stop" : 1579162744811,
"duration" : 13087
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f1c67c3270eb15ae",
"name" : "test_create_user",
"time" : {
"start" : 1579162674670,
"stop" : 1579162682294,
"duration" : 7624
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "10f60f461394b1aa",
"name" : "test_create_vdc",
"time" : {
"start" : 1579162880914,
"stop" : 1579162884946,
"duration" : 4032
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c346293772d84211",
"name" : "test_delete_openstack_endpoint",
"time" : {
"start" : 1574506674361,
"stop" : 1574506689740,
"duration" : 15379
"start" : 1579163021120,
"stop" : 1579163035175,
"duration" : 14055
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "533e5d07cadf6732",
"uid" : "65f5f170d7bfdee6",
"name" : "test_create_project",
"time" : {
"start" : 1579162721556,
"stop" : 1579162728917,
"duration" : 7361
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "d57f583af3a372a",
"name" : "test_allocation_domain_admin",
"time" : {
"start" : 1579162685754,
"stop" : 1579162698343,
"duration" : 12589
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "aa1ed28b06d12b2d",
"name" : "test_delete_vmware_endpoint",
"time" : {
"start" : 1579163004135,
"stop" : 1579163018126,
"duration" : 13991
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "b9ab257d78436e50",
"name" : "test_create",
"time" : {
"start" : 1579162701424,
"stop" : 1579162708755,
"duration" : 7331
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "c7625209629a1cf2",
"name" : "test_create_service_openstack",
"time" : {
"start" : 1579162759241,
"stop" : 1579162767823,
"duration" : 8582
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "50a56dd22e7c119",
"name" : "test_delete_service_openstack",
"time" : {
"start" : 1579163085223,
"stop" : 1579163096988,
"duration" : 11765
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "664311dc70ba901d",
"name" : "test_delete_project",
"time" : {
"start" : 1579162966096,
"stop" : 1579162978342,
"duration" : 12246
},
"status" : "passed",
"severity" : "normal"
}, {
"uid" : "f2c50489b1f8515a",
"name" : "test_delete_tenant",
"time" : {
"start" : 1574506613914,
"stop" : 1574506636623,
"duration" : 22709
"start" : 1579162981435,
"stop" : 1579163001280,
"duration" : 19845
},
"status" : "passed",
"severity" : "normal"

View File

@ -5,9 +5,9 @@
"name" : "testcase",
"statistic" : {
"failed" : 0,
"broken" : 0,
"broken" : 2,
"skipped" : 0,
"passed" : 26,
"passed" : 24,
"unknown" : 0,
"total" : 26
}

View File

@ -3,18 +3,18 @@
"testRuns" : [ ],
"statistic" : {
"failed" : 0,
"broken" : 0,
"broken" : 2,
"skipped" : 0,
"passed" : 26,
"passed" : 24,
"unknown" : 0,
"total" : 26
},
"time" : {
"start" : 1574506253731,
"stop" : 1574506783805,
"duration" : 530074,
"minDuration" : 3622,
"maxDuration" : 31021,
"sumDuration" : 356791
"start" : 1579162670851,
"stop" : 1579163174910,
"duration" : 504059,
"minDuration" : 509,
"maxDuration" : 87852,
"sumDuration" : 344271
}
}

View File

@ -1,358 +0,0 @@
2019-10-23 14:08:10,664 - root - INFO - 发送邮件成功
2019-10-23 14:18:34,157 - root - INFO - ############################### START ###############################
2019-10-23 14:18:45,869 - root - INFO - SUCCESS Start a new browser: firefox, Spend 11.711702346801758 seconds
2019-10-23 14:18:46,185 - root - INFO - SUCCESS Set browser window maximized, Spend 0.315108060836792 seconds
2019-10-23 14:18:47,904 - root - INFO - SUCCESS Navigated to http://www.baidu.com, Spend 1.7197353839874268 seconds
2019-10-23 14:18:48,100 - root - INFO - SUCCESS Clear and type element: <id->kw> content: 小石头tester, Spend 0.19345688819885254 seconds
2019-10-23 14:18:48,342 - root - INFO - SUCCESS Clicked element: <id->su>, Spend 0.24138379096984863 seconds
2019-10-23 14:18:50,351 - root - INFO - SUCCESS Get current window title, Spend 0.005972623825073242 seconds
2019-10-23 14:18:53,013 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 2.660834550857544 seconds
2019-10-23 14:18:53,014 - root - INFO - ############################### End ###############################
2019-10-23 14:18:53,015 - root - INFO - ############################### START ###############################
2019-10-23 14:19:02,871 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.855625629425049 seconds
2019-10-23 14:19:03,153 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28025197982788086 seconds
2019-10-23 14:19:05,673 - root - INFO - SUCCESS Navigated to http://www.baidu.com, Spend 2.2186830043792725 seconds
2019-10-23 14:19:05,772 - root - INFO - SUCCESS Clear and type element: <id->kw> content: webdriver, Spend 0.09771108627319336 seconds
2019-10-23 14:19:06,013 - root - INFO - SUCCESS Clicked element: <id->su>, Spend 0.2403578758239746 seconds
2019-10-23 14:19:08,016 - root - INFO - SUCCESS Get current window title, Spend 0.002981901168823242 seconds
2019-10-23 14:19:08,302 - root - INFO - SUCCESS Navigated to http://www.baidu.com, Spend 0.2842414379119873 seconds
2019-10-23 14:19:08,418 - root - INFO - SUCCESS Clear and type element: <id->kw> content: selenium, Spend 0.1156916618347168 seconds
2019-10-23 14:19:08,652 - root - INFO - SUCCESS Clicked element: <id->su>, Spend 0.23242831230163574 seconds
2019-10-23 14:19:10,663 - root - INFO - SUCCESS Get current window title, Spend 0.006849765777587891 seconds
2019-10-23 14:19:11,050 - root - INFO - SUCCESS Navigated to http://www.baidu.com, Spend 0.3849520683288574 seconds
2019-10-23 14:19:11,123 - root - INFO - SUCCESS Clear and type element: <id->kw> content: github, Spend 0.0718083381652832 seconds
2019-10-23 14:19:11,361 - root - INFO - SUCCESS Clicked element: <id->su>, Spend 0.2354118824005127 seconds
2019-10-23 14:19:13,368 - root - INFO - SUCCESS Get current window title, Spend 0.0049779415130615234 seconds
2019-10-23 14:19:13,674 - root - INFO - SUCCESS Navigated to http://www.baidu.com, Spend 0.30518174171447754 seconds
2019-10-23 14:19:13,781 - root - INFO - SUCCESS Clear and type element: <id->kw> content: 小石头tester, Spend 0.10568380355834961 seconds
2019-10-23 14:19:14,017 - root - INFO - SUCCESS Clicked element: <id->su>, Spend 0.23636746406555176 seconds
2019-10-23 14:19:16,025 - root - INFO - SUCCESS Get current window title, Spend 0.004923105239868164 seconds
2019-10-23 14:19:17,671 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.6445512771606445 seconds
2019-10-23 14:19:17,671 - root - INFO - ############################### End ###############################
2019-10-23 14:40:29,979 - root - INFO - ############################### START ###############################
2019-10-23 14:40:39,248 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.268224239349365 seconds
2019-10-23 14:40:39,512 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26134538650512695 seconds
2019-10-23 14:41:00,666 - root - INFO - FAIL Unable to load http:\192.168.54.124, Spend 21.153165817260742 seconds
2019-10-23 14:41:01,800 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.132476806640625 seconds
2019-10-23 14:41:01,801 - root - INFO - ############################### End ###############################
2019-10-23 14:55:06,011 - root - INFO - ############################### START ###############################
2019-10-23 14:55:15,305 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.292520999908447 seconds
2019-10-23 14:55:15,586 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2812814712524414 seconds
2019-10-23 14:55:16,462 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 0.8756694793701172 seconds
2019-10-23 14:55:16,462 - root - INFO - ############################### End ###############################
2019-10-23 14:55:51,729 - root - INFO - ############################### START ###############################
2019-10-23 14:56:00,992 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.261247634887695 seconds
2019-10-23 14:56:01,266 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27329230308532715 seconds
2019-10-23 14:56:06,124 - root - INFO - FAIL Unable to load http:\http:\\192.168.54.13, Spend 4.856264114379883 seconds
2019-10-23 14:56:09,470 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 3.3450562953948975 seconds
2019-10-23 14:56:09,470 - root - INFO - ############################### End ###############################
2019-10-23 14:56:48,477 - root - INFO - ############################### START ###############################
2019-10-23 14:56:57,790 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.311076641082764 seconds
2019-10-23 14:56:58,052 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26078128814697266 seconds
2019-10-23 14:57:02,731 - root - INFO - FAIL Unable to load http:\http:\\192.168.54.13, Spend 4.678468942642212 seconds
2019-10-23 14:57:05,831 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 3.100710153579712 seconds
2019-10-23 14:57:05,832 - root - INFO - ############################### End ###############################
2019-10-23 14:57:32,908 - root - INFO - ############################### START ###############################
2019-10-23 14:57:42,201 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.292126655578613 seconds
2019-10-23 14:57:42,466 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26330065727233887 seconds
2019-10-23 14:57:42,936 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4697537422180176 seconds
2019-10-23 14:57:42,937 - root - INFO - FAIL Unable to clear and type element: <//input[@name='username']> content: 系统管理员, Spend 0.0 seconds
2019-10-23 14:57:43,982 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.0443263053894043 seconds
2019-10-23 14:57:43,983 - root - INFO - ############################### End ###############################
2019-10-23 14:58:31,652 - root - INFO - ############################### START ###############################
2019-10-23 14:58:40,949 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.296118974685669 seconds
2019-10-23 14:58:41,235 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2842411994934082 seconds
2019-10-23 14:58:41,741 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5042297840118408 seconds
2019-10-23 14:58:41,818 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07580065727233887 seconds
2019-10-23 14:58:41,861 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04288601875305176 seconds
2019-10-23 14:58:41,906 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 12344, Spend 0.043883562088012695 seconds
2019-10-23 14:58:42,622 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7150776386260986 seconds
2019-10-23 14:58:44,080 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4566161632537842 seconds
2019-10-23 14:58:44,080 - root - INFO - ############################### End ###############################
2019-10-23 15:00:19,211 - root - INFO - ############################### START ###############################
2019-10-23 15:00:28,663 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.450743913650513 seconds
2019-10-23 15:00:28,933 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26733827590942383 seconds
2019-10-23 15:00:29,472 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5375082492828369 seconds
2019-10-23 15:00:29,540 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06682372093200684 seconds
2019-10-23 15:00:29,590 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04986715316772461 seconds
2019-10-23 15:00:29,634 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 12344, Spend 0.043882131576538086 seconds
2019-10-23 15:00:35,814 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.178663730621338 seconds
2019-10-23 15:00:36,876 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.059593915939331 seconds
2019-10-23 15:00:36,876 - root - INFO - ############################### End ###############################
2019-10-23 15:21:04,956 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.281947135925293 seconds
2019-10-23 15:21:09,995 - root - INFO - FAIL Unable to clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 5.037583351135254 seconds
2019-10-23 15:23:20,586 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.262405395507812 seconds
2019-10-23 15:23:20,853 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26432156562805176 seconds
2019-10-23 15:23:25,911 - root - INFO - FAIL Unable to clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 5.057499170303345 seconds
2019-10-23 15:23:53,915 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.354992628097534 seconds
2019-10-23 15:23:54,192 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2756061553955078 seconds
2019-10-23 15:23:54,675 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48223114013671875 seconds
2019-10-23 15:23:54,851 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.1765298843383789 seconds
2019-10-23 15:23:54,896 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04487729072570801 seconds
2019-10-23 15:23:54,946 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04787278175354004 seconds
2019-10-23 15:23:57,632 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6851725578308105 seconds
2019-10-23 15:59:26,194 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.013232707977295 seconds
2019-10-23 15:59:26,474 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27829647064208984 seconds
2019-10-23 15:59:27,144 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6702084541320801 seconds
2019-10-23 15:59:27,219 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07280707359313965 seconds
2019-10-23 15:59:27,266 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04487919807434082 seconds
2019-10-23 15:59:27,307 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989267349243164 seconds
2019-10-23 15:59:30,038 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7290499210357666 seconds
2019-10-23 16:01:10,905 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.299482583999634 seconds
2019-10-23 16:01:11,173 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2665672302246094 seconds
2019-10-23 16:01:11,697 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5225896835327148 seconds
2019-10-23 16:01:11,849 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.15259575843811035 seconds
2019-10-23 16:01:11,879 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.029916048049926758 seconds
2019-10-23 16:01:11,908 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.027944564819335938 seconds
2019-10-23 16:01:14,593 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.684168815612793 seconds
2019-10-23 16:22:17,395 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.306126594543457 seconds
2019-10-23 16:22:17,665 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2694735527038574 seconds
2019-10-23 16:22:18,240 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.572472095489502 seconds
2019-10-23 16:22:18,291 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05086970329284668 seconds
2019-10-23 16:22:18,321 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.030912160873413086 seconds
2019-10-23 16:22:18,348 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.025932788848876953 seconds
2019-10-23 16:22:21,355 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.0051357746124268 seconds
2019-10-23 16:22:21,783 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.4268920421600342 seconds
2019-10-23 16:22:24,564 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.77923583984375 seconds
2019-10-23 17:12:25,817 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.831392526626587 seconds
2019-10-23 17:12:26,097 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27726030349731445 seconds
2019-10-23 17:12:26,699 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6024329662322998 seconds
2019-10-23 17:12:26,753 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05286526679992676 seconds
2019-10-23 17:12:26,789 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.035904884338378906 seconds
2019-10-23 17:12:26,827 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03590202331542969 seconds
2019-10-23 17:12:29,904 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.076117753982544 seconds
2019-10-23 17:12:30,183 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.2772552967071533 seconds
2019-10-23 17:12:33,365 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 2.1820130348205566 seconds
2019-10-23 17:12:33,731 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.36601877212524414 seconds
2019-10-23 17:13:23,550 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.401832818984985 seconds
2019-10-23 17:13:23,817 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2648739814758301 seconds
2019-10-23 17:13:24,461 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6441650390625 seconds
2019-10-23 17:13:24,521 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05884385108947754 seconds
2019-10-23 17:13:24,565 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04288911819458008 seconds
2019-10-23 17:13:24,605 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789663314819336 seconds
2019-10-23 17:13:27,398 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7928740978240967 seconds
2019-10-23 17:13:27,681 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.28127479553222656 seconds
2019-10-23 17:13:30,487 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.8049612045288086 seconds
2019-10-23 17:13:30,788 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.3011593818664551 seconds
2019-10-23 17:14:34,247 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.296127557754517 seconds
2019-10-23 17:14:34,523 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2753632068634033 seconds
2019-10-23 17:14:35,114 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5894145965576172 seconds
2019-10-23 17:14:35,271 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.15558671951293945 seconds
2019-10-23 17:14:35,300 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.0279238224029541 seconds
2019-10-23 17:14:35,326 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.02490973472595215 seconds
2019-10-23 17:14:38,688 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.3614051342010498 seconds
2019-10-23 17:14:38,979 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.2892169952392578 seconds
2019-10-23 17:14:42,004 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 2.0245859622955322 seconds
2019-10-23 17:14:42,299 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.2931845188140869 seconds
2019-10-23 17:15:22,958 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.80479097366333 seconds
2019-10-23 17:15:23,234 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27503275871276855 seconds
2019-10-23 17:15:23,770 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5356204509735107 seconds
2019-10-23 17:15:23,826 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05485081672668457 seconds
2019-10-23 17:15:23,987 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.15957236289978027 seconds
2019-10-23 17:15:24,019 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03191661834716797 seconds
2019-10-23 17:15:26,825 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.802851676940918 seconds
2019-10-23 17:15:27,120 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.2952086925506592 seconds
2019-10-23 17:15:28,158 - root - INFO - FAIL Unable to click element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 0.03673672676086426 seconds
2019-10-23 17:16:38,017 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.313103437423706 seconds
2019-10-23 17:16:38,305 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2872323989868164 seconds
2019-10-23 17:16:38,854 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5484964847564697 seconds
2019-10-23 17:16:38,913 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05684828758239746 seconds
2019-10-23 17:16:38,960 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04587125778198242 seconds
2019-10-23 17:16:39,007 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.045877695083618164 seconds
2019-10-23 17:16:41,805 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7958722114562988 seconds
2019-10-23 17:16:42,094 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.28822898864746094 seconds
2019-10-23 17:16:45,027 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.9330692291259766 seconds
2019-10-23 17:16:45,341 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.31316208839416504 seconds
2019-10-23 17:27:35,128 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.28615140914917 seconds
2019-10-23 17:27:35,398 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2682797908782959 seconds
2019-10-23 17:27:36,055 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6562473773956299 seconds
2019-10-23 17:27:36,126 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06881284713745117 seconds
2019-10-23 17:27:36,171 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04288291931152344 seconds
2019-10-23 17:27:36,209 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789949417114258 seconds
2019-10-23 17:27:39,026 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8158202171325684 seconds
2019-10-23 17:27:39,302 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.2742655277252197 seconds
2019-10-23 17:27:42,165 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.8620240688323975 seconds
2019-10-23 17:27:42,506 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.3400869369506836 seconds
2019-10-23 17:27:44,801 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.2911677360534668 seconds
2019-10-23 17:27:44,904 - root - INFO - SUCCESS Clear and type element: <xpath ->//textarea[@name='regDesc'] > content: 1234567654321, Spend 0.10070395469665527 seconds
2019-10-23 17:28:21,921 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.275176048278809 seconds
2019-10-23 17:28:22,194 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27238011360168457 seconds
2019-10-23 17:28:22,845 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6502628326416016 seconds
2019-10-23 17:28:22,912 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06583189964294434 seconds
2019-10-23 17:28:22,965 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05086159706115723 seconds
2019-10-23 17:28:23,018 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.052858829498291016 seconds
2019-10-23 17:28:25,934 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9135525226593018 seconds
2019-10-23 17:28:26,384 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.4497969150543213 seconds
2019-10-23 17:28:29,193 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.8091659545898438 seconds
2019-10-23 17:28:29,496 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.30016279220581055 seconds
2019-10-23 17:28:31,807 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.3090853691101074 seconds
2019-10-23 17:28:36,867 - root - INFO - FAIL Unable to click element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[4]/span >, Spend 5.05944037437439 seconds
2019-10-23 17:30:54,586 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.334796667098999 seconds
2019-10-23 17:30:54,852 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2648582458496094 seconds
2019-10-23 17:30:55,525 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6712038516998291 seconds
2019-10-23 17:30:55,672 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.145613431930542 seconds
2019-10-23 17:30:55,704 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.031914710998535156 seconds
2019-10-23 17:30:55,728 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.023132801055908203 seconds
2019-10-23 17:30:59,600 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.8703765869140625 seconds
2019-10-23 17:30:59,875 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.2742655277252197 seconds
2019-10-23 17:31:02,735 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.858985185623169 seconds
2019-10-23 17:31:03,063 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.32613086700439453 seconds
2019-10-23 17:31:05,342 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.27408456802368164 seconds
2019-10-23 17:31:05,400 - root - INFO - SUCCESS Clear and type element: <xpath -> (//input[@type='search'])[4]> content: 河南, Spend 0.05688834190368652 seconds
2019-10-23 17:31:05,482 - root - INFO - SUCCESS Clear and type element: <xpath ->//textarea[@name='regDesc'] > content: 1234567654321, Spend 0.08173918724060059 seconds
2019-10-23 18:02:27,951 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.306123971939087 seconds
2019-10-23 18:02:28,232 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2785451412200928 seconds
2019-10-23 18:02:28,888 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6552176475524902 seconds
2019-10-23 18:02:28,943 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05485081672668457 seconds
2019-10-23 18:02:28,985 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04188990592956543 seconds
2019-10-23 18:02:29,033 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04786992073059082 seconds
2019-10-23 18:02:31,748 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7140898704528809 seconds
2019-10-23 18:02:32,216 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.4657578468322754 seconds
2019-10-23 18:02:35,149 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.9327621459960938 seconds
2019-10-23 18:02:35,466 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.31714963912963867 seconds
2019-10-23 18:02:37,870 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.40276288986206055 seconds
2019-10-23 18:02:38,498 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[4]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.6263716220855713 seconds
2019-10-23 18:02:38,667 - root - INFO - SUCCESS Clear and type element: <name -> regName_> content: auto_test, Spend 0.16654729843139648 seconds
2019-10-23 18:02:38,917 - root - INFO - SUCCESS Clicked element: <xpath -> //div[3]/div/div/div/span/span[2]/span>, Spend 0.2503316402435303 seconds
2019-10-23 18:02:39,529 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[5]> type content: OpenStack L,and sleep 0.5 seconds,input ENTER key, Spend 0.6103687286376953 seconds
2019-10-23 18:02:39,797 - root - INFO - SUCCESS Clicked element: <xpath->//div[4]/div/div/div/span/span[2]/span>, Spend 0.26628613471984863 seconds
2019-10-23 18:02:40,489 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[6]> type content: 业务云,and sleep 0.5 seconds,input ENTER key, Spend 0.691155195236206 seconds
2019-10-23 18:02:40,758 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div[5]/div/div/div/span/span[2]>, Spend 0.2682802677154541 seconds
2019-10-23 18:02:41,358 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[7]> type content: VMware,and sleep 0.5 seconds,input ENTER key, Spend 0.5993983745574951 seconds
2019-10-23 18:02:41,460 - root - INFO - SUCCESS Clear and type element: <xpath ->//textarea[@name='regDesc'] > content: auto_test, Spend 0.10168981552124023 seconds
2019-10-23 18:03:23,157 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.820746660232544 seconds
2019-10-23 18:03:23,437 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2782633304595947 seconds
2019-10-23 18:03:24,150 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.7122423648834229 seconds
2019-10-23 18:03:24,230 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07978630065917969 seconds
2019-10-23 18:03:24,274 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04288601875305176 seconds
2019-10-23 18:03:24,314 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789806365966797 seconds
2019-10-23 18:03:27,680 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.3643457889556885 seconds
2019-10-23 18:03:27,976 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.2952125072479248 seconds
2019-10-23 18:03:30,975 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.9976511001586914 seconds
2019-10-23 18:03:31,262 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.2862386703491211 seconds
2019-10-23 18:03:33,584 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.320009708404541 seconds
2019-10-23 18:03:34,198 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[4]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.6133654117584229 seconds
2019-10-23 18:03:34,351 - root - INFO - SUCCESS Clear and type element: <name -> regName_> content: auto_test, Spend 0.15153789520263672 seconds
2019-10-23 18:03:34,596 - root - INFO - SUCCESS Clicked element: <xpath -> //div[3]/div/div/div/span/span[2]/span>, Spend 0.245344877243042 seconds
2019-10-23 18:03:35,224 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[5]> type content: OpenStack L,and sleep 0.5 seconds,input ENTER key, Spend 0.6253025531768799 seconds
2019-10-23 18:03:35,507 - root - INFO - SUCCESS Clicked element: <xpath->//div[4]/div/div/div/span/span[2]/span>, Spend 0.28324294090270996 seconds
2019-10-23 18:03:36,068 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[6]> type content: 业务云,and sleep 0.5 seconds,input ENTER key, Spend 0.5605003833770752 seconds
2019-10-23 18:03:36,345 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div[5]/div/div/div/span/span[2]>, Spend 0.27523159980773926 seconds
2019-10-23 18:03:36,933 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[7]> type content: VMware,and sleep 0.5 seconds,input ENTER key, Spend 0.5874314308166504 seconds
2019-10-23 18:03:37,061 - root - INFO - SUCCESS Clear and type element: <xpath ->//textarea[@name='regDesc'] > content: auto_test, Spend 0.1276569366455078 seconds
2019-10-23 18:03:42,133 - root - INFO - FAIL Unable to click element: <xpath->//div[28]/div/div[3]/button>, Spend 5.071623086929321 seconds
2019-10-23 18:04:35,963 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.316062450408936 seconds
2019-10-23 18:04:36,266 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3002011775970459 seconds
2019-10-23 18:04:36,968 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.7001261711120605 seconds
2019-10-23 18:04:37,046 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07679295539855957 seconds
2019-10-23 18:04:37,084 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.037895917892456055 seconds
2019-10-23 18:04:37,130 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04488229751586914 seconds
2019-10-23 18:04:40,652 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.519806146621704 seconds
2019-10-23 18:04:40,947 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.29421186447143555 seconds
2019-10-23 18:04:43,660 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.7123782634735107 seconds
2019-10-23 18:04:44,010 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.349071741104126 seconds
2019-10-23 18:04:46,372 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.35903215408325195 seconds
2019-10-23 18:04:46,954 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[4]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5824413299560547 seconds
2019-10-23 18:04:47,101 - root - INFO - SUCCESS Clear and type element: <name -> regName_> content: auto_test, Spend 0.14458274841308594 seconds
2019-10-23 18:04:47,353 - root - INFO - SUCCESS Clicked element: <xpath -> //div[3]/div/div/div/span/span[2]/span>, Spend 0.25232553482055664 seconds
2019-10-23 18:04:47,979 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[5]> type content: OpenStack L,and sleep 0.5 seconds,input ENTER key, Spend 0.6243252754211426 seconds
2019-10-23 18:04:48,253 - root - INFO - SUCCESS Clicked element: <xpath->//div[4]/div/div/div/span/span[2]/span>, Spend 0.27226734161376953 seconds
2019-10-23 18:04:48,809 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[6]> type content: 业务云,and sleep 0.5 seconds,input ENTER key, Spend 0.5555150508880615 seconds
2019-10-23 18:04:49,119 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div[5]/div/div/div/span/span[2]>, Spend 0.31017088890075684 seconds
2019-10-23 18:04:49,743 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[7]> type content: VMware,and sleep 0.5 seconds,input ENTER key, Spend 0.6213433742523193 seconds
2019-10-23 18:04:49,853 - root - INFO - SUCCESS Clear and type element: <xpath ->//textarea[@name='regDesc'] > content: auto_test, Spend 0.11069893836975098 seconds
2019-10-23 18:04:50,081 - root - INFO - SUCCESS Clicked element: <css->#regAddAndEdit .btn-primary>, Spend 0.22640252113342285 seconds
2019-10-23 18:14:09,166 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.382758855819702 seconds
2019-10-23 18:14:09,470 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3022167682647705 seconds
2019-10-23 18:14:10,186 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.7151460647583008 seconds
2019-10-23 18:14:10,246 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05784106254577637 seconds
2019-10-23 18:14:10,288 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04189252853393555 seconds
2019-10-23 18:14:10,336 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04687809944152832 seconds
2019-10-23 18:14:13,663 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.324329137802124 seconds
2019-10-23 18:14:13,950 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.2852611541748047 seconds
2019-10-23 18:14:16,846 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.8949520587921143 seconds
2019-10-23 18:14:17,141 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.29523181915283203 seconds
2019-10-23 18:14:19,414 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.27030110359191895 seconds
2019-10-23 18:14:20,033 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[4]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.6183967590332031 seconds
2019-10-23 18:14:20,188 - root - INFO - SUCCESS Clear and type element: <name -> regName_> content: auto_test01, Spend 0.15459871292114258 seconds
2019-10-23 18:14:20,439 - root - INFO - SUCCESS Clicked element: <xpath -> //div[3]/div/div/div/span/span[2]/span>, Spend 0.2503509521484375 seconds
2019-10-23 18:14:21,100 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[5]> type content: OpenStack L,and sleep 0.5 seconds,input ENTER key, Spend 0.660327672958374 seconds
2019-10-23 18:14:21,402 - root - INFO - SUCCESS Clicked element: <xpath->//div[4]/div/div/div/span/span[2]/span>, Spend 0.30121397972106934 seconds
2019-10-23 18:14:22,017 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[6]> type content: 业务云,and sleep 0.5 seconds,input ENTER key, Spend 0.6134114265441895 seconds
2019-10-23 18:14:22,291 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div[5]/div/div/div/span/span[2]>, Spend 0.27328991889953613 seconds
2019-10-23 18:14:22,913 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[7]> type content: VMware,and sleep 0.5 seconds,input ENTER key, Spend 0.620394229888916 seconds
2019-10-23 18:14:23,034 - root - INFO - SUCCESS Clear and type element: <xpath ->//textarea[@name='regDesc'] > content: auto_test, Spend 0.11868786811828613 seconds
2019-10-23 18:14:23,267 - root - INFO - SUCCESS Clicked element: <css->#regAddAndEdit .btn-primary>, Spend 0.23239731788635254 seconds
2019-10-23 18:51:05,517 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.379512548446655 seconds
2019-10-23 18:51:05,785 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26700878143310547 seconds
2019-10-23 18:51:06,413 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6273746490478516 seconds
2019-10-23 18:51:06,479 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06483030319213867 seconds
2019-10-23 18:51:06,520 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.0408935546875 seconds
2019-10-23 18:51:06,560 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.038898468017578125 seconds
2019-10-23 18:51:09,945 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.3823919296264648 seconds
2019-10-23 18:51:15,017 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 5.071763515472412 seconds
2019-10-23 18:51:56,965 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.306714534759521 seconds
2019-10-23 18:51:57,250 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28237104415893555 seconds
2019-10-23 18:51:57,779 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.528620719909668 seconds
2019-10-23 18:51:57,951 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.1715853214263916 seconds
2019-10-23 18:51:57,992 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03986167907714844 seconds
2019-10-23 18:51:58,037 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.043885231018066406 seconds
2019-10-23 18:52:01,474 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.4352514743804932 seconds
2019-10-23 18:52:01,763 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.28725743293762207 seconds
2019-10-23 18:52:04,653 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.8889453411102295 seconds
2019-10-23 18:52:05,024 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.36904096603393555 seconds
2019-10-23 18:52:05,310 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.2822566032409668 seconds
2019-10-23 18:52:05,604 - root - INFO - SUCCESS Clicked element: <xpath -> //button[2]/i>, Spend 0.2922937870025635 seconds
2019-10-23 18:58:33,215 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.272770643234253 seconds
2019-10-23 18:58:33,496 - root - INFO - SUCCESS Set browser window maximized, Spend 0.278515100479126 seconds
2019-10-23 18:58:34,001 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5046820640563965 seconds
2019-10-23 18:58:34,167 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.16557025909423828 seconds
2019-10-23 18:58:34,201 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03291201591491699 seconds
2019-10-23 18:58:34,238 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690361976623535 seconds
2019-10-23 18:58:37,846 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.6067414283752441 seconds
2019-10-23 18:58:38,138 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.29029345512390137 seconds
2019-10-23 18:58:41,044 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.9049901962280273 seconds
2019-10-23 18:58:41,282 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2383441925048828 seconds
2019-10-23 18:58:41,533 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.24935150146484375 seconds
2019-10-23 18:58:41,896 - root - INFO - SUCCESS Clicked element: <xpath -> //button[2]/i>, Spend 0.36002230644226074 seconds
2019-10-23 18:58:44,054 - root - INFO - SUCCESS Clear and type element: <name->serviceName> content: vmware-api, Spend 0.15652060508728027 seconds
2019-10-23 18:58:44,312 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/div/span/span[2]/span>, Spend 0.25732851028442383 seconds
2019-10-23 18:58:44,952 - root - INFO - SUCCESS Element <xpath->//div/div[2]/div/div/input> type content: vmware,and sleep 0.5 seconds,input ENTER key, Spend 0.6383366584777832 seconds
2019-10-23 18:58:45,217 - root - INFO - SUCCESS Clear and type element: <name->authenInfo> content: administrator@vsphere.local, Spend 0.26331162452697754 seconds
2019-10-23 18:58:45,331 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='authenInfo'])[2]> content: P@ssw0rd, Spend 0.11270737648010254 seconds
2019-10-23 18:58:46,648 - root - INFO - SUCCESS Clicked element: <css->#serAddAndEdit .btn-primary>, Spend 0.3161640167236328 seconds
2019-10-23 19:24:39,869 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.87720775604248 seconds
2019-10-23 19:24:40,142 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27129197120666504 seconds
2019-10-23 19:24:40,862 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.7191944122314453 seconds
2019-10-23 19:24:40,925 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06184220314025879 seconds
2019-10-23 19:24:40,964 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03690338134765625 seconds
2019-10-23 19:24:40,996 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.030920743942260742 seconds
2019-10-23 19:24:44,777 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.7802026271820068 seconds
2019-10-23 19:24:44,778 - root - INFO - 跳转到资源节点页面
2019-10-23 19:24:45,060 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.28026676177978516 seconds
2019-10-23 19:24:48,194 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 2.1322834491729736 seconds
2019-10-23 19:24:48,194 - root - INFO - 添加endpint
2019-10-23 19:24:48,575 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.37899184226989746 seconds
2019-10-23 19:24:48,899 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.3221602439880371 seconds
2019-10-23 19:24:49,198 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]/parent::li//child::i>, Spend 0.2962803840637207 seconds
2019-10-23 19:24:49,480 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware-api')])[2]>, Spend 0.2782285213470459 seconds
2019-10-23 19:24:49,799 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.318112850189209 seconds
2019-10-23 19:24:49,800 - root - INFO - FAIL Unable to clear and type element: <ath=(//input[@type='text'])[13]> content: http://192.168.54.136, Spend 0.0010089874267578125 seconds
2019-10-23 19:26:09,452 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.275279760360718 seconds
2019-10-23 19:26:09,790 - root - INFO - SUCCESS Set browser window maximized, Spend 0.33710312843322754 seconds
2019-10-23 19:26:10,653 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.8609802722930908 seconds
2019-10-23 19:26:10,729 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07579612731933594 seconds
2019-10-23 19:26:10,770 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.039891719818115234 seconds
2019-10-23 19:26:10,810 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889584541320801 seconds
2019-10-23 19:26:14,263 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.4499707221984863 seconds
2019-10-23 19:26:14,263 - root - INFO - 跳转到资源节点页面
2019-10-23 19:26:14,549 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.28429722785949707 seconds
2019-10-23 19:26:17,347 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.7972049713134766 seconds
2019-10-23 19:26:17,348 - root - INFO - 添加endpint
2019-10-23 19:26:17,700 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.35106801986694336 seconds
2019-10-23 19:26:17,949 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.2483375072479248 seconds
2019-10-23 19:26:18,209 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]/parent::li//child::i>, Spend 0.25729846954345703 seconds
2019-10-23 19:26:18,492 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware-api')])[2]>, Spend 0.28027772903442383 seconds
2019-10-23 19:26:18,818 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.32219576835632324 seconds
2019-10-23 19:26:19,026 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.136, Spend 0.20744013786315918 seconds
2019-10-23 19:26:19,273 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.24637079238891602 seconds

View File

@ -1,832 +0,0 @@
2019-10-24 08:37:10,497 - root - INFO - SUCCESS Start a new browser: firefox, Spend 14.787160873413086 seconds
2019-10-24 08:37:10,776 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2782566547393799 seconds
2019-10-24 08:37:11,432 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6551990509033203 seconds
2019-10-24 08:37:11,489 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.055849552154541016 seconds
2019-10-24 08:37:11,529 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03789877891540527 seconds
2019-10-24 08:37:11,568 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03790020942687988 seconds
2019-10-24 08:37:15,067 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.498199224472046 seconds
2019-10-24 08:37:15,068 - root - INFO - 跳转到资源节点页面
2019-10-24 08:37:15,367 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.29919958114624023 seconds
2019-10-24 08:37:18,310 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.941810131072998 seconds
2019-10-24 08:37:18,311 - root - INFO - 创建VMware服务节点
2019-10-24 08:37:18,569 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2563140392303467 seconds
2019-10-24 08:37:18,823 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.2543184757232666 seconds
2019-10-24 08:37:19,112 - root - INFO - SUCCESS Clicked element: <xpath -> //button[2]/i>, Spend 0.2892274856567383 seconds
2019-10-24 08:37:21,320 - root - INFO - SUCCESS Clear and type element: <name->serviceName> content: openstack-l-api, Spend 0.20544648170471191 seconds
2019-10-24 08:37:21,591 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/div/span/span[2]/span>, Spend 0.27028584480285645 seconds
2019-10-24 08:37:22,205 - root - INFO - SUCCESS Element <xpath->//div/div[2]/div/div/input> type content: keystone,and sleep 0.5 seconds,input ENTER key, Spend 0.61336350440979 seconds
2019-10-24 08:37:22,357 - root - INFO - SUCCESS Clear and type element: <name->authenInfo> content: admin, Spend 0.15059781074523926 seconds
2019-10-24 08:37:22,448 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='authenInfo'])[2]> content: admin, Spend 0.08975744247436523 seconds
2019-10-24 08:37:23,687 - root - INFO - SUCCESS Clicked element: <css->#serAddAndEdit .btn-primary>, Spend 0.23836135864257812 seconds
2019-10-24 08:37:23,688 - root - INFO - 跳转到资源节点页面
2019-10-24 08:37:24,353 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.6632273197174072 seconds
2019-10-24 08:37:25,657 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 0.3041858673095703 seconds
2019-10-24 08:37:25,658 - root - INFO - 添加endpint
2019-10-24 08:37:30,719 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 5.05856466293335 seconds
2019-10-24 08:38:03,584 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.307408332824707 seconds
2019-10-24 08:38:03,867 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28328871726989746 seconds
2019-10-24 08:38:04,788 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.919487476348877 seconds
2019-10-24 08:38:04,877 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.08776521682739258 seconds
2019-10-24 08:38:04,937 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05983877182006836 seconds
2019-10-24 08:38:04,988 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.048870086669921875 seconds
2019-10-24 08:38:07,910 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9205408096313477 seconds
2019-10-24 08:38:07,911 - root - INFO - 跳转到资源节点页面
2019-10-24 08:38:08,215 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.30219364166259766 seconds
2019-10-24 08:38:11,532 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 2.314809799194336 seconds
2019-10-24 08:38:11,532 - root - INFO - 添加endpint
2019-10-24 08:38:11,886 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.3510618209838867 seconds
2019-10-24 08:38:12,150 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.2632932662963867 seconds
2019-10-24 08:38:12,386 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]/parent::li//child::i>, Spend 0.23633313179016113 seconds
2019-10-24 08:38:17,415 - root - INFO - FAIL Unable to click element: <xpath->(//a[contains(text(),'openstack-l-api')])[2]>, Spend 5.026619911193848 seconds
2019-10-24 08:39:28,407 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.824173927307129 seconds
2019-10-24 08:39:28,679 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27127528190612793 seconds
2019-10-24 08:39:29,168 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48673057556152344 seconds
2019-10-24 08:39:29,219 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05086350440979004 seconds
2019-10-24 08:39:29,256 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.0359039306640625 seconds
2019-10-24 08:39:29,304 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0468752384185791 seconds
2019-10-24 08:39:32,747 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.4415950775146484 seconds
2019-10-24 08:39:32,748 - root - INFO - 跳转到资源节点页面
2019-10-24 08:39:33,033 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.2842376232147217 seconds
2019-10-24 08:39:35,821 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.787187099456787 seconds
2019-10-24 08:39:35,822 - root - INFO - 添加endpint
2019-10-24 08:39:36,093 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.26928091049194336 seconds
2019-10-24 08:39:36,377 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.2822458744049072 seconds
2019-10-24 08:39:36,605 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]/parent::li//child::i>, Spend 0.22743487358093262 seconds
2019-10-24 08:39:41,675 - root - INFO - FAIL Unable to click element: <xpath->(//a[contains(text(),'openstack-l-api')])[2]>, Spend 5.067668199539185 seconds
2019-10-24 08:42:22,340 - root - INFO - SUCCESS Start a new browser: firefox, Spend 11.92859172821045 seconds
2019-10-24 08:42:22,603 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26229429244995117 seconds
2019-10-24 08:42:23,209 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.60489821434021 seconds
2019-10-24 08:42:23,264 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05485129356384277 seconds
2019-10-24 08:42:23,310 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04388308525085449 seconds
2019-10-24 08:42:23,349 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.038897037506103516 seconds
2019-10-24 08:42:26,377 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.0250849723815918 seconds
2019-10-24 08:42:26,378 - root - INFO - 跳转到资源节点页面
2019-10-24 08:42:26,655 - root - INFO - SUCCESS Move to element: <xpath -> //i>, Spend 0.27729249000549316 seconds
2019-10-24 08:42:29,357 - root - INFO - SUCCESS Clicked element: <xpath -> //li[contains(.,'资源节点管理')]>, Spend 1.7007827758789062 seconds
2019-10-24 08:42:29,357 - root - INFO - 添加endpint
2019-10-24 08:42:29,627 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2682809829711914 seconds
2019-10-24 08:42:29,869 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.24067926406860352 seconds
2019-10-24 08:42:30,100 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]/parent::li//child::i>, Spend 0.23035717010498047 seconds
2019-10-24 08:42:30,361 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack-l-api')])>, Spend 0.2593080997467041 seconds
2019-10-24 08:42:30,611 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.24933838844299316 seconds
2019-10-24 08:42:30,829 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.103:5000/v3, Spend 0.216386079788208 seconds
2019-10-24 08:42:31,076 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.24634194374084473 seconds
2019-10-24 09:03:31,451 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.796480894088745 seconds
2019-10-24 09:03:31,744 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2922201156616211 seconds
2019-10-24 09:03:32,232 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48769497871398926 seconds
2019-10-24 09:03:32,294 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06183886528015137 seconds
2019-10-24 09:03:32,339 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.042882680892944336 seconds
2019-10-24 09:03:32,374 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03389716148376465 seconds
2019-10-24 09:03:35,685 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.309450626373291 seconds
2019-10-24 09:03:37,293 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.607703447341919 seconds
2019-10-24 09:03:37,294 - root - INFO - 添加endpint
2019-10-24 09:03:37,555 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2613039016723633 seconds
2019-10-24 09:03:37,798 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]>, Spend 0.24135136604309082 seconds
2019-10-24 09:03:38,021 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'111111')]/parent::li//child::i>, Spend 0.2214336395263672 seconds
2019-10-24 09:03:38,275 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack-l-api')])>, Spend 0.25239086151123047 seconds
2019-10-24 09:03:38,564 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.287217378616333 seconds
2019-10-24 09:03:38,753 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.103:5000/v3, Spend 0.18949246406555176 seconds
2019-10-24 09:03:38,989 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.23337602615356445 seconds
2019-10-24 10:29:12,936 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.30408501625061 seconds
2019-10-24 10:29:13,204 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26728272438049316 seconds
2019-10-24 10:29:13,733 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5275907516479492 seconds
2019-10-24 10:29:13,801 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06682109832763672 seconds
2019-10-24 10:29:13,851 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.049866676330566406 seconds
2019-10-24 10:29:13,893 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089164733886719 seconds
2019-10-24 10:29:16,570 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6751968860626221 seconds
2019-10-24 10:29:16,573 - root - INFO - 同步物理资源
2019-10-24 10:29:18,262 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6865203380584717 seconds
2019-10-24 10:29:18,270 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.006948709487915039 seconds
2019-10-24 10:29:18,270 - root - INFO - 选择region河南;
2019-10-24 10:29:18,531 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.26035022735595703 seconds
2019-10-24 10:29:19,100 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5694470405578613 seconds
2019-10-24 10:29:19,101 - root - INFO - 选择数据中心:111111
2019-10-24 10:29:19,373 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.27127575874328613 seconds
2019-10-24 10:29:19,933 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.5585122108459473 seconds
2019-10-24 10:29:21,249 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3144888877868652 seconds
2019-10-24 10:29:21,476 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22539949417114258 seconds
2019-10-24 10:29:21,743 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2652909755706787 seconds
2019-10-24 10:39:20,667 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.302130937576294 seconds
2019-10-24 10:39:20,974 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3052341938018799 seconds
2019-10-24 10:39:21,457 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4833359718322754 seconds
2019-10-24 10:39:21,618 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.15953516960144043 seconds
2019-10-24 10:39:21,647 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.027892112731933594 seconds
2019-10-24 10:39:21,673 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.023934364318847656 seconds
2019-10-24 10:39:24,358 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6851668357849121 seconds
2019-10-24 10:39:24,359 - root - INFO - 同步物理资源
2019-10-24 10:39:25,649 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.2895519733428955 seconds
2019-10-24 10:39:25,664 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.013962984085083008 seconds
2019-10-24 10:39:25,665 - root - INFO - 选择region河南;
2019-10-24 10:39:25,955 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.2892262935638428 seconds
2019-10-24 10:39:26,580 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5804214477539062 seconds
2019-10-24 10:39:26,580 - root - INFO - 选择数据中心:111111
2019-10-24 10:39:26,811 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.22942447662353516 seconds
2019-10-24 10:39:27,395 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.5824193954467773 seconds
2019-10-24 10:39:28,708 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3104937076568604 seconds
2019-10-24 10:39:28,934 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22440791130065918 seconds
2019-10-24 10:39:29,170 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.23437285423278809 seconds
2019-10-24 10:47:18,453 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.81454348564148 seconds
2019-10-24 10:47:18,736 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28061628341674805 seconds
2019-10-24 10:47:19,324 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5873985290527344 seconds
2019-10-24 10:47:19,394 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.0677952766418457 seconds
2019-10-24 10:47:19,436 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04189014434814453 seconds
2019-10-24 10:47:19,476 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989124298095703 seconds
2019-10-24 10:47:22,213 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7360239028930664 seconds
2019-10-24 10:47:22,214 - root - INFO - 同步物理资源
2019-10-24 10:47:23,871 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.65718412399292 seconds
2019-10-24 10:47:23,881 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.009974241256713867 seconds
2019-10-24 10:47:23,882 - root - INFO - 选择region河南;
2019-10-24 10:47:24,156 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.2732667922973633 seconds
2019-10-24 10:47:24,729 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5724701881408691 seconds
2019-10-24 10:47:24,730 - root - INFO - 选择数据中心:111111
2019-10-24 10:47:25,011 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2812502384185791 seconds
2019-10-24 10:47:25,582 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.5684819221496582 seconds
2019-10-24 10:47:26,909 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3238286972045898 seconds
2019-10-24 10:47:27,159 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.24932408332824707 seconds
2019-10-24 10:47:27,386 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.22443366050720215 seconds
2019-10-24 10:47:32,416 - root - INFO - FAIL Unable to click element: <xpath->//button[text()='确定']>, Spend 5.029612302780151 seconds
2019-10-24 10:48:02,442 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.790770292282104 seconds
2019-10-24 10:48:02,710 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2662842273712158 seconds
2019-10-24 10:48:03,309 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5987465381622314 seconds
2019-10-24 10:48:03,364 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.0528562068939209 seconds
2019-10-24 10:48:03,404 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03989267349243164 seconds
2019-10-24 10:48:03,442 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.035904884338378906 seconds
2019-10-24 10:48:06,090 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6452293395996094 seconds
2019-10-24 10:48:06,092 - root - INFO - 同步物理资源
2019-10-24 10:48:07,299 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.2066097259521484 seconds
2019-10-24 10:48:07,310 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.009974956512451172 seconds
2019-10-24 10:48:07,311 - root - INFO - 选择region河南;
2019-10-24 10:48:07,588 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.2762589454650879 seconds
2019-10-24 10:48:08,194 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.6044251918792725 seconds
2019-10-24 10:48:08,196 - root - INFO - 选择数据中心:111111
2019-10-24 10:48:08,484 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28822827339172363 seconds
2019-10-24 10:48:09,033 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.5485317707061768 seconds
2019-10-24 10:48:10,328 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2935447692871094 seconds
2019-10-24 10:48:10,581 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.25232362747192383 seconds
2019-10-24 10:48:10,820 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2363736629486084 seconds
2019-10-24 10:48:16,874 - root - INFO - FAIL Unable to click element: <xpath->//button[text()='确定']>, Spend 5.052570104598999 seconds
2019-10-24 10:57:37,036 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.791161060333252 seconds
2019-10-24 10:57:37,305 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2673940658569336 seconds
2019-10-24 10:57:37,902 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5964062213897705 seconds
2019-10-24 10:57:37,969 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06482291221618652 seconds
2019-10-24 10:57:38,011 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04088997840881348 seconds
2019-10-24 10:57:38,056 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0438838005065918 seconds
2019-10-24 10:57:40,706 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6472148895263672 seconds
2019-10-24 10:57:40,707 - root - INFO - 同步物理资源
2019-10-24 10:57:42,148 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.4411468505859375 seconds
2019-10-24 10:57:42,161 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.01296687126159668 seconds
2019-10-24 10:57:42,162 - root - INFO - 选择region河南;
2019-10-24 10:57:42,446 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.28424072265625 seconds
2019-10-24 10:57:43,046 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5993986129760742 seconds
2019-10-24 10:57:43,048 - root - INFO - 选择数据中心:111111
2019-10-24 10:57:43,310 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2603023052215576 seconds
2019-10-24 10:57:43,901 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.589428186416626 seconds
2019-10-24 10:57:45,240 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3364639282226562 seconds
2019-10-24 10:57:45,508 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.2652580738067627 seconds
2019-10-24 10:57:45,756 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2483532428741455 seconds
2019-10-24 10:57:51,825 - root - INFO - FAIL Unable to click element: <xpath->//.button[text()='确定']>, Spend 5.066455841064453 seconds
2019-10-24 11:02:55,683 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.814434051513672 seconds
2019-10-24 11:02:55,959 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2752647399902344 seconds
2019-10-24 11:02:56,606 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6474826335906982 seconds
2019-10-24 11:02:56,666 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05780148506164551 seconds
2019-10-24 11:02:56,706 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.039891958236694336 seconds
2019-10-24 11:02:56,743 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.036902666091918945 seconds
2019-10-24 11:02:59,487 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7429699897766113 seconds
2019-10-24 11:02:59,488 - root - INFO - 同步物理资源
2019-10-24 11:03:01,279 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.789217233657837 seconds
2019-10-24 11:03:01,291 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.010970115661621094 seconds
2019-10-24 11:03:01,292 - root - INFO - 选择region河南;
2019-10-24 11:03:01,589 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.2952117919921875 seconds
2019-10-24 11:03:02,156 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5674846172332764 seconds
2019-10-24 11:03:02,157 - root - INFO - 选择数据中心:111111
2019-10-24 11:03:02,471 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.31313443183898926 seconds
2019-10-24 11:03:03,042 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.569481611251831 seconds
2019-10-24 11:03:04,366 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3224666118621826 seconds
2019-10-24 11:03:04,643 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.27426862716674805 seconds
2019-10-24 11:03:04,893 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.24833297729492188 seconds
2019-10-24 11:03:05,909 - root - INFO - FAIL Unable switch to frame element: <id->syncModal>, Spend 0.014870643615722656 seconds
2019-10-24 11:06:45,164 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.7934889793396 seconds
2019-10-24 11:06:45,472 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30717945098876953 seconds
2019-10-24 11:06:46,085 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6133322715759277 seconds
2019-10-24 11:06:46,143 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05684685707092285 seconds
2019-10-24 11:06:46,184 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.0388941764831543 seconds
2019-10-24 11:06:46,226 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04088926315307617 seconds
2019-10-24 11:06:48,910 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.681920051574707 seconds
2019-10-24 11:06:48,911 - root - INFO - 同步物理资源
2019-10-24 11:06:50,625 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.7144150733947754 seconds
2019-10-24 11:06:50,631 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.004986763000488281 seconds
2019-10-24 11:06:50,632 - root - INFO - 选择region河南;
2019-10-24 11:06:50,890 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.2563154697418213 seconds
2019-10-24 11:06:51,451 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5614984035491943 seconds
2019-10-24 11:06:51,452 - root - INFO - 选择数据中心:111111
2019-10-24 11:06:51,735 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28224802017211914 seconds
2019-10-24 11:06:52,293 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.5565133094787598 seconds
2019-10-24 11:06:53,605 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3105030059814453 seconds
2019-10-24 11:06:53,851 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.2433469295501709 seconds
2019-10-24 11:06:54,081 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.22939276695251465 seconds
2019-10-24 11:07:00,142 - root - INFO - FAIL Unable to click element: <xpath->(//button[@type='button'])[43]>, Spend 5.059467554092407 seconds
2019-10-24 11:13:31,030 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.317091226577759 seconds
2019-10-24 11:13:31,305 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2733035087585449 seconds
2019-10-24 11:13:31,999 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6931056976318359 seconds
2019-10-24 11:13:32,331 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.3301198482513428 seconds
2019-10-24 11:13:32,375 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.042885541915893555 seconds
2019-10-24 11:13:32,411 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690028190612793 seconds
2019-10-24 11:13:35,096 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6831700801849365 seconds
2019-10-24 11:13:35,097 - root - INFO - 同步物理资源
2019-10-24 11:13:36,410 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.3104956150054932 seconds
2019-10-24 11:13:36,418 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.006986141204833984 seconds
2019-10-24 11:13:36,420 - root - INFO - 选择region河南;
2019-10-24 11:13:36,702 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.28124141693115234 seconds
2019-10-24 11:13:37,276 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5734672546386719 seconds
2019-10-24 11:13:37,276 - root - INFO - 选择数据中心:111111
2019-10-24 11:13:37,545 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.26628780364990234 seconds
2019-10-24 11:13:38,098 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.5524921417236328 seconds
2019-10-24 11:13:39,393 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2935817241668701 seconds
2019-10-24 11:13:39,625 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.23237180709838867 seconds
2019-10-24 11:13:39,859 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.23237371444702148 seconds
2019-10-24 11:13:49,908 - root - INFO - FAIL Unable to click element: <xpath->//.button[text()='确定']>, Spend 5.0473387241363525 seconds
2019-10-24 11:20:36,052 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.802467107772827 seconds
2019-10-24 11:20:36,323 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2713034152984619 seconds
2019-10-24 11:20:36,813 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48865532875061035 seconds
2019-10-24 11:20:36,865 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05086469650268555 seconds
2019-10-24 11:20:36,910 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.043881893157958984 seconds
2019-10-24 11:20:36,948 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789973258972168 seconds
2019-10-24 11:20:39,613 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6642181873321533 seconds
2019-10-24 11:20:39,614 - root - INFO - 同步物理资源
2019-10-24 11:20:41,234 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6186752319335938 seconds
2019-10-24 11:20:41,241 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.005984067916870117 seconds
2019-10-24 11:20:41,242 - root - INFO - 选择region河南;
2019-10-24 11:20:41,495 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.25235867500305176 seconds
2019-10-24 11:20:42,063 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5664536952972412 seconds
2019-10-24 11:20:42,063 - root - INFO - 选择数据中心:111111
2019-10-24 11:20:42,345 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28228211402893066 seconds
2019-10-24 11:20:42,903 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.556485652923584 seconds
2019-10-24 11:20:44,204 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3005220890045166 seconds
2019-10-24 11:20:44,432 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22739958763122559 seconds
2019-10-24 11:20:44,666 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.23238277435302734 seconds
2019-10-24 11:20:49,695 - root - INFO - FAIL Unable to click element: <xpath->(//button[@type='button' and text()='确定'])>, Spend 5.026616096496582 seconds
2019-10-24 11:21:20,593 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.32734990119934 seconds
2019-10-24 11:21:20,869 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2752654552459717 seconds
2019-10-24 11:21:21,391 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5215730667114258 seconds
2019-10-24 11:21:21,447 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05585145950317383 seconds
2019-10-24 11:21:21,489 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04089164733886719 seconds
2019-10-24 11:21:21,526 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.035904645919799805 seconds
2019-10-24 11:21:24,151 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6233370304107666 seconds
2019-10-24 11:21:24,152 - root - INFO - 同步物理资源
2019-10-24 11:21:25,659 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.5059726238250732 seconds
2019-10-24 11:21:25,666 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.006989479064941406 seconds
2019-10-24 11:21:25,667 - root - INFO - 选择region河南;
2019-10-24 11:21:25,920 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.25331926345825195 seconds
2019-10-24 11:21:26,494 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5734667778015137 seconds
2019-10-24 11:21:26,495 - root - INFO - 选择数据中心:111111
2019-10-24 11:21:26,820 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.32416224479675293 seconds
2019-10-24 11:21:27,410 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.5874302387237549 seconds
2019-10-24 11:21:28,737 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3254554271697998 seconds
2019-10-24 11:21:29,002 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.26429128646850586 seconds
2019-10-24 11:21:29,231 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.22637939453125 seconds
2019-10-24 11:21:36,296 - root - INFO - FAIL Unable to click element: <xpath->(//button[@type='button' and text()='确定'])>, Spend 5.063417673110962 seconds
2019-10-24 11:23:59,632 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.282249689102173 seconds
2019-10-24 11:23:59,921 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2892575263977051 seconds
2019-10-24 11:24:00,384 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4622986316680908 seconds
2019-10-24 11:24:00,544 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.15958118438720703 seconds
2019-10-24 11:24:00,584 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03789663314819336 seconds
2019-10-24 11:24:00,614 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.028924226760864258 seconds
2019-10-24 11:24:03,845 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.2296934127807617 seconds
2019-10-24 11:24:03,845 - root - INFO - 同步物理资源
2019-10-24 11:24:05,973 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 2.1273179054260254 seconds
2019-10-24 11:24:05,990 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.01595902442932129 seconds
2019-10-24 11:24:05,992 - root - INFO - 选择region河南;
2019-10-24 11:24:06,295 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.3021883964538574 seconds
2019-10-24 11:24:07,024 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.7270619869232178 seconds
2019-10-24 11:24:07,026 - root - INFO - 选择数据中心:111111
2019-10-24 11:24:07,345 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.31815195083618164 seconds
2019-10-24 11:24:07,971 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 111111,and sleep 0.5 seconds,input ENTER key, Spend 0.625328540802002 seconds
2019-10-24 11:24:09,257 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2835674285888672 seconds
2019-10-24 11:24:09,509 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.25032591819763184 seconds
2019-10-24 11:24:09,769 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2593064308166504 seconds
2019-10-24 11:24:12,055 - root - INFO - SUCCESS Clicked element: <css->.modal-footer:nth-child(3) > .btn-warning>, Spend 0.2842376232147217 seconds
2019-10-24 11:39:03,820 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.800472021102905 seconds
2019-10-24 11:39:04,095 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2732703685760498 seconds
2019-10-24 11:39:04,601 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5056145191192627 seconds
2019-10-24 11:39:04,658 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.054852962493896484 seconds
2019-10-24 11:39:04,704 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.044879913330078125 seconds
2019-10-24 11:39:04,739 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.033910274505615234 seconds
2019-10-24 11:39:07,438 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6981234550476074 seconds
2019-10-24 11:39:08,999 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.5598299503326416 seconds
2019-10-24 11:39:09,386 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.386965274810791 seconds
2019-10-24 11:39:10,514 - root - INFO - SUCCESS Clear and type element: <id->vdcName> content: wzs_vdc, Spend 0.12559247016906738 seconds
2019-10-24 11:39:10,902 - root - INFO - SUCCESS Clicked element: <css->.modal-footer:nth-child(3) > .btn-warning>, Spend 0.3880031108856201 seconds
2019-10-24 14:10:35,209 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.796663761138916 seconds
2019-10-24 14:10:35,485 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2753000259399414 seconds
2019-10-24 14:10:35,974 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48776721954345703 seconds
2019-10-24 14:10:36,032 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05684041976928711 seconds
2019-10-24 14:10:36,076 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04388260841369629 seconds
2019-10-24 14:10:36,113 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03490757942199707 seconds
2019-10-24 14:10:39,364 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.2517311573028564 seconds
2019-10-24 14:11:34,773 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.271721124649048 seconds
2019-10-24 14:11:35,040 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2653336524963379 seconds
2019-10-24 14:11:35,476 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.43479132652282715 seconds
2019-10-24 14:11:35,527 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05083417892456055 seconds
2019-10-24 14:11:35,559 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.030916929244995117 seconds
2019-10-24 14:11:35,582 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.022933244705200195 seconds
2019-10-24 14:11:38,179 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5963723659515381 seconds
2019-10-24 14:11:39,681 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.4999949932098389 seconds
2019-10-24 14:11:40,512 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wzs_vdc,and sleep 0.5 seconds,input ENTER key, Spend 0.8297803401947021 seconds
2019-10-24 14:11:40,671 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.1576063632965088 seconds
2019-10-24 14:11:41,977 - root - INFO - SUCCESS Clicked element: <css->.mr-5>, Spend 0.3041877746582031 seconds
2019-10-24 14:11:42,032 - root - INFO - FAIL Unable to clear and type element: <id->vPoolName> content: wzs_voopl_01, Spend 0.05381298065185547 seconds
2019-10-24 14:12:47,474 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.817426204681396 seconds
2019-10-24 14:12:47,760 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2842707633972168 seconds
2019-10-24 14:12:48,267 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5067293643951416 seconds
2019-10-24 14:12:48,328 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.059839487075805664 seconds
2019-10-24 14:12:48,371 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04088902473449707 seconds
2019-10-24 14:12:48,407 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.035904645919799805 seconds
2019-10-24 14:12:51,098 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6901512145996094 seconds
2019-10-24 14:12:52,648 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.5488951206207275 seconds
2019-10-24 14:12:53,420 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wzs_vdc,and sleep 0.5 seconds,input ENTER key, Spend 0.7719018459320068 seconds
2019-10-24 14:12:53,581 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.16156744956970215 seconds
2019-10-24 14:12:54,922 - root - INFO - SUCCESS Clicked element: <css->.mr-5>, Spend 0.33794283866882324 seconds
2019-10-24 14:12:56,100 - root - INFO - SUCCESS Clear and type element: <id->vPoolName> content: wzs_voopl_01, Spend 0.17652177810668945 seconds
2019-10-24 14:13:01,198 - root - INFO - FAIL Unable to click element: <xpath->//div[text()='虚拟资源']>, Spend 5.096213102340698 seconds
2019-10-24 14:16:23,947 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.785447359085083 seconds
2019-10-24 14:16:24,219 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27031707763671875 seconds
2019-10-24 14:16:24,731 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5105719566345215 seconds
2019-10-24 14:16:24,786 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05285763740539551 seconds
2019-10-24 14:16:24,828 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.040895938873291016 seconds
2019-10-24 14:16:24,861 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.031912803649902344 seconds
2019-10-24 14:16:28,102 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.240579605102539 seconds
2019-10-24 14:16:29,602 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.4999899864196777 seconds
2019-10-24 14:16:30,239 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wzs_vdc,and sleep 0.5 seconds,input ENTER key, Spend 0.6376063823699951 seconds
2019-10-24 14:16:30,405 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.16356444358825684 seconds
2019-10-24 14:16:31,700 - root - INFO - SUCCESS Clicked element: <css->.mr-5>, Spend 0.29221653938293457 seconds
2019-10-24 14:16:32,847 - root - INFO - SUCCESS Clear and type element: <id->vPoolName> content: wzs_voopl_01, Spend 0.14461159706115723 seconds
2019-10-24 14:16:37,886 - root - INFO - FAIL Unable to click element: <css->.form-group:nth-child(2) .ui-select-match-text > .ng-binding']>, Spend 5.039349317550659 seconds
2019-10-24 14:20:10,175 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.753602266311646 seconds
2019-10-24 14:20:10,445 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26928019523620605 seconds
2019-10-24 14:20:10,890 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.44492483139038086 seconds
2019-10-24 14:20:11,087 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.1948392391204834 seconds
2019-10-24 14:20:11,141 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05385637283325195 seconds
2019-10-24 14:20:11,179 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690075874328613 seconds
2019-10-24 14:20:13,906 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.726900577545166 seconds
2019-10-24 14:20:15,451 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.5428743362426758 seconds
2019-10-24 14:20:16,259 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wzs_vdc,and sleep 0.5 seconds,input ENTER key, Spend 0.8071496486663818 seconds
2019-10-24 14:20:16,414 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.15554141998291016 seconds
2019-10-24 14:20:17,703 - root - INFO - SUCCESS Clicked element: <css->.mr-5>, Spend 0.2877039909362793 seconds
2019-10-24 14:20:18,840 - root - INFO - SUCCESS Clear and type element: <id->vPoolName> content: wzs_voopl_01, Spend 0.13463878631591797 seconds
2019-10-24 14:20:23,896 - root - INFO - FAIL Unable to click element: <css->.form-group:nth-child(2) .ui-select-match-text > .ng-binding']>, Spend 5.053839683532715 seconds
2019-10-24 14:21:40,774 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.806119441986084 seconds
2019-10-24 14:21:41,079 - root - INFO - SUCCESS Set browser window maximized, Spend 0.302706241607666 seconds
2019-10-24 14:21:41,724 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6436083316802979 seconds
2019-10-24 14:21:41,778 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05282402038574219 seconds
2019-10-24 14:21:41,821 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04088997840881348 seconds
2019-10-24 14:21:41,858 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.035906314849853516 seconds
2019-10-24 14:21:44,546 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6861538887023926 seconds
2019-10-24 14:21:46,156 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.6099767684936523 seconds
2019-10-24 14:21:46,800 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wzs_vdc,and sleep 0.5 seconds,input ENTER key, Spend 0.643848180770874 seconds
2019-10-24 14:21:46,956 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.15558481216430664 seconds
2019-10-24 14:21:48,243 - root - INFO - SUCCESS Clicked element: <css->.mr-5>, Spend 0.28525328636169434 seconds
2019-10-24 14:21:49,367 - root - INFO - SUCCESS Clear and type element: <id->vPoolName> content: wzs_voopl_01, Spend 0.12143921852111816 seconds
2019-10-24 14:21:49,621 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit_form']/div/div[2]/div/div/div[1]/span/span[2]/span>, Spend 0.25335693359375 seconds
2019-10-24 14:21:50,184 - root - INFO - SUCCESS Element <css->.open > .form-control> type content: 虚拟资源,and sleep 0.5 seconds,input ENTER key, Spend 0.5614593029022217 seconds
2019-10-24 14:21:50,467 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit_form']/div/div[5]/div/div/div[1]/span/span[2]/span>, Spend 0.28224706649780273 seconds
2019-10-24 14:21:51,016 - root - INFO - SUCCESS Element <css->.open > .form-control> type content: 数据中心,and sleep 0.5 seconds,input ENTER key, Spend 0.5495312213897705 seconds
2019-10-24 14:21:51,075 - root - INFO - FAIL Unable to click element: <css->.form-group:nth-child(6) .ui-select-match-text > .ng-binding>, Spend 0.057845115661621094 seconds
2019-10-24 14:24:26,974 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.753697156906128 seconds
2019-10-24 14:24:27,285 - root - INFO - SUCCESS Set browser window maximized, Spend 0.31017160415649414 seconds
2019-10-24 14:24:27,917 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6298260688781738 seconds
2019-10-24 14:24:27,978 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.060834646224975586 seconds
2019-10-24 14:24:28,027 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.046877145767211914 seconds
2019-10-24 14:24:28,065 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.036904096603393555 seconds
2019-10-24 14:24:31,429 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.3640532493591309 seconds
2019-10-24 14:24:32,956 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.5241951942443848 seconds
2019-10-24 14:24:33,766 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wzs_vdc,and sleep 0.5 seconds,input ENTER key, Spend 0.8101422786712646 seconds
2019-10-24 14:24:33,928 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.16153502464294434 seconds
2019-10-24 14:24:35,238 - root - INFO - SUCCESS Clicked element: <css->.mr-5>, Spend 0.30817365646362305 seconds
2019-10-24 14:24:36,396 - root - INFO - SUCCESS Clear and type element: <id->vPoolName> content: wzs_voopl_01, Spend 0.15739727020263672 seconds
2019-10-24 14:24:36,648 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit_form']/div/div[2]/div/div/div[1]/span/span[2]/span>, Spend 0.25037074089050293 seconds
2019-10-24 14:24:37,237 - root - INFO - SUCCESS Element <css->.open > .form-control> type content: 虚拟资源,and sleep 0.5 seconds,input ENTER key, Spend 0.5876564979553223 seconds
2019-10-24 14:24:37,522 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit_form']/div/div[5]/div/div/div[1]/span/span[2]/span>, Spend 0.2842521667480469 seconds
2019-10-24 14:24:38,106 - root - INFO - SUCCESS Element <css->.open > .form-control> type content: 数据中心,and sleep 0.5 seconds,input ENTER key, Spend 0.5807921886444092 seconds
2019-10-24 14:24:38,164 - root - INFO - FAIL Unable to click element: <xpath->//*[@id='AddandEdit_form']/div/div[6]/div/div/div[1]/span/span[2]/span>, Spend 0.05584383010864258 seconds
2019-10-24 14:48:54,485 - root - INFO - ############################### START ###############################
2019-10-24 14:49:03,872 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.38504409790039 seconds
2019-10-24 14:49:04,138 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26467227935791016 seconds
2019-10-24 14:49:04,650 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5106065273284912 seconds
2019-10-24 14:49:04,713 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06183362007141113 seconds
2019-10-24 14:49:04,755 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04088640213012695 seconds
2019-10-24 14:49:04,795 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 12344, Spend 0.03889608383178711 seconds
2019-10-24 14:49:10,087 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.29122328758239746 seconds
2019-10-24 14:49:11,447 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3583941459655762 seconds
2019-10-24 14:49:11,447 - root - INFO - ############################### End ###############################
2019-10-24 15:29:56,820 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.8131844997406 seconds
2019-10-24 15:29:57,111 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2894766330718994 seconds
2019-10-24 15:29:57,706 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.593447208404541 seconds
2019-10-24 15:29:57,868 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.16057133674621582 seconds
2019-10-24 15:29:57,911 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.041852712631225586 seconds
2019-10-24 15:29:57,951 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789854049682617 seconds
2019-10-24 15:30:00,881 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9285182952880859 seconds
2019-10-24 15:30:03,777 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 2.896256446838379 seconds
2019-10-24 15:30:04,063 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.2842400074005127 seconds
2019-10-24 15:30:04,381 - root - INFO - SUCCESS Clicked element: <xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div[1]/div/div[2]/form/div[1]/div[1]/div/div/button[2]>, Spend 0.3181490898132324 seconds
2019-10-24 15:30:04,640 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南')]>, Spend 0.2593064308166504 seconds
2019-10-24 15:30:04,775 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wuzs0001, Spend 0.13360095024108887 seconds
2019-10-24 15:30:04,905 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzs0001, Spend 0.12865591049194336 seconds
2019-10-24 15:30:05,023 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.11668825149536133 seconds
2019-10-24 15:30:05,155 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.13164782524108887 seconds
2019-10-24 15:30:05,288 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: wzs@qq.com, Spend 0.132645845413208 seconds
2019-10-24 15:30:06,022 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.7313005924224854 seconds
2019-10-24 15:30:12,436 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4131662845611572 seconds
2019-10-24 15:30:40,435 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.803966999053955 seconds
2019-10-24 15:30:40,709 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27127695083618164 seconds
2019-10-24 15:30:41,297 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5864336490631104 seconds
2019-10-24 15:30:41,357 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05884265899658203 seconds
2019-10-24 15:30:41,399 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04088997840881348 seconds
2019-10-24 15:30:41,442 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04288625717163086 seconds
2019-10-24 15:30:46,903 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.4592337608337402 seconds
2019-10-24 15:30:49,943 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 3.038874387741089 seconds
2019-10-24 15:30:50,242 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.2982027530670166 seconds
2019-10-24 15:30:50,696 - root - INFO - SUCCESS Clicked element: <xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div[1]/div/div[2]/form/div[1]/div[1]/div/div/button[2]>, Spend 0.3809819221496582 seconds
2019-10-24 15:30:51,000 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南')]>, Spend 0.30318665504455566 seconds
2019-10-24 15:30:51,204 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wuzs0001, Spend 0.2024996280670166 seconds
2019-10-24 15:30:51,384 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzs0001, Spend 0.17951750755310059 seconds
2019-10-24 15:30:51,515 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.13065123558044434 seconds
2019-10-24 15:30:51,636 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.11971235275268555 seconds
2019-10-24 15:30:51,754 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wzs@qq.com, Spend 0.11765217781066895 seconds
2019-10-24 15:30:52,032 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.27725982666015625 seconds
2019-10-24 15:30:58,373 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.33941650390625 seconds
2019-10-24 17:25:30,237 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.25244140625 seconds
2019-10-24 17:25:30,507 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26928043365478516 seconds
2019-10-24 17:25:31,087 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5801117420196533 seconds
2019-10-24 17:25:31,258 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.17054390907287598 seconds
2019-10-24 17:25:31,296 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03789877891540527 seconds
2019-10-24 17:25:31,324 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.02820897102355957 seconds
2019-10-24 17:25:34,227 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9013745784759521 seconds
2019-10-24 17:25:42,887 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.6589014530181885 seconds
2019-10-24 17:25:42,888 - root - INFO - FAIL Unable to click element: <xpath=//a[contains(text(),'河南分公司')]>, Spend 0.0 seconds
2019-10-24 17:26:33,197 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.286935567855835 seconds
2019-10-24 17:26:33,475 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27665042877197266 seconds
2019-10-24 17:26:34,129 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6523005962371826 seconds
2019-10-24 17:26:34,329 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.1984691619873047 seconds
2019-10-24 17:26:34,374 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04340791702270508 seconds
2019-10-24 17:26:34,418 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188704490661621 seconds
2019-10-24 17:26:37,436 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.0155284404754639 seconds
2019-10-24 17:26:45,662 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.2262966632843018 seconds
2019-10-24 17:26:46,127 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.46413135528564453 seconds
2019-10-24 17:26:46,386 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.25815677642822266 seconds
2019-10-24 17:26:46,650 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.263775110244751 seconds
2019-10-24 17:26:46,906 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.2542901039123535 seconds
2019-10-24 17:26:47,637 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7300505638122559 seconds
2019-10-24 17:26:49,136 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.496671438217163 seconds
2019-10-24 17:29:00,223 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.29627251625061 seconds
2019-10-24 17:29:00,490 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26628994941711426 seconds
2019-10-24 17:29:01,121 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6284341812133789 seconds
2019-10-24 17:29:01,228 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.10671234130859375 seconds
2019-10-24 17:29:01,279 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05086374282836914 seconds
2019-10-24 17:29:01,320 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989219665527344 seconds
2019-10-24 17:29:06,861 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.537724018096924 seconds
2019-10-24 17:29:10,127 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.2661004066467285 seconds
2019-10-24 17:29:10,620 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.4906880855560303 seconds
2019-10-24 17:29:10,890 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2691679000854492 seconds
2019-10-24 17:29:11,155 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2649967670440674 seconds
2019-10-24 17:29:11,409 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.253324031829834 seconds
2019-10-24 17:29:12,139 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7290489673614502 seconds
2019-10-24 17:29:12,416 - root - INFO - SUCCESS Clicked element: <css->.radio>, Spend 0.2722795009613037 seconds
2019-10-24 17:29:19,087 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.6698031425476074 seconds
2019-10-24 18:21:21,311 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.316834926605225 seconds
2019-10-24 18:21:21,608 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2962000370025635 seconds
2019-10-24 18:21:22,292 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6826837062835693 seconds
2019-10-24 18:21:22,469 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.1748344898223877 seconds
2019-10-24 18:21:22,516 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.046875953674316406 seconds
2019-10-24 18:21:22,559 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188823699951172 seconds
2019-10-24 18:21:28,009 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.448312520980835 seconds
2019-10-24 18:21:31,141 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.13118314743042 seconds
2019-10-24 18:21:31,597 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.454822301864624 seconds
2019-10-24 18:21:31,885 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.287891149520874 seconds
2019-10-24 18:21:32,182 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.29517507553100586 seconds
2019-10-24 18:21:32,485 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.3031580448150635 seconds
2019-10-24 18:21:33,248 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7629592418670654 seconds
2019-10-24 18:21:38,326 - root - INFO - FAIL Unable to click element: <xpath -> /html/body/div[@id='addUserModal']/div/div/div/form/table-component/div/table/tbody/tr[@class='ng-scope']/tr[@class='width20 text-center ng-scope']/div[@class='checker']>, Spend 5.071756362915039 seconds
2019-10-24 18:25:15,519 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.290296792984009 seconds
2019-10-24 18:25:15,826 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30687832832336426 seconds
2019-10-24 18:25:16,428 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6011078357696533 seconds
2019-10-24 18:25:16,597 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.1685490608215332 seconds
2019-10-24 18:25:16,641 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04189300537109375 seconds
2019-10-24 18:25:16,681 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989267349243164 seconds
2019-10-24 18:25:22,156 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.4737493991851807 seconds
2019-10-24 18:25:25,270 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.1138579845428467 seconds
2019-10-24 18:25:25,672 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.4014885425567627 seconds
2019-10-24 18:25:25,932 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.25913095474243164 seconds
2019-10-24 18:25:26,239 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.30431556701660156 seconds
2019-10-24 18:25:26,493 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.2543203830718994 seconds
2019-10-24 18:25:27,227 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7330422401428223 seconds
2019-10-24 18:25:32,279 - root - INFO - FAIL Unable to click element: <xpath -> /html/body/div[@id='addUserModal']/div/div/div/form/table-component/div/table/tbody/tr[@class='ng-scope']/tr[@class='width20 text-center ng-scope']/div[@class='checker']/input[@type='radio']>, Spend 5.049908638000488 seconds
2019-10-24 18:29:54,019 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.323222398757935 seconds
2019-10-24 18:29:54,342 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3211500644683838 seconds
2019-10-24 18:29:54,961 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6173486709594727 seconds
2019-10-24 18:29:55,017 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.054853200912475586 seconds
2019-10-24 18:29:55,050 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03291440010070801 seconds
2019-10-24 18:29:55,080 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.029921770095825195 seconds
2019-10-24 18:30:00,586 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.503918170928955 seconds
2019-10-24 18:30:04,062 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.4744350910186768 seconds
2019-10-24 18:30:04,447 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.3845679759979248 seconds
2019-10-24 18:30:04,718 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2698230743408203 seconds
2019-10-24 18:30:04,986 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.26725244522094727 seconds
2019-10-24 18:30:05,253 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.2662949562072754 seconds
2019-10-24 18:30:05,932 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.6771097183227539 seconds
2019-10-24 18:30:07,117 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1780171394348145 seconds
2019-10-24 18:30:30,852 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.256777048110962 seconds
2019-10-24 18:30:31,127 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2728865146636963 seconds
2019-10-24 18:30:31,748 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6198029518127441 seconds
2019-10-24 18:30:31,820 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07081103324890137 seconds
2019-10-24 18:30:31,874 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05253458023071289 seconds
2019-10-24 18:30:31,916 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989243507385254 seconds
2019-10-24 18:30:34,805 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8880608081817627 seconds
2019-10-24 18:30:37,778 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 2.972336769104004 seconds
2019-10-24 18:30:38,175 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.394911527633667 seconds
2019-10-24 18:30:38,459 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.28385043144226074 seconds
2019-10-24 18:30:38,741 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.28032422065734863 seconds
2019-10-24 18:30:39,218 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.47611045837402344 seconds
2019-10-24 18:30:39,992 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.771934986114502 seconds
2019-10-24 18:30:41,233 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2297847270965576 seconds
2019-10-24 18:31:39,968 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.300907373428345 seconds
2019-10-24 18:31:40,241 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27327823638916016 seconds
2019-10-24 18:31:40,880 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6383318901062012 seconds
2019-10-24 18:31:40,959 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07678580284118652 seconds
2019-10-24 18:31:41,004 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04388308525085449 seconds
2019-10-24 18:31:41,055 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0498659610748291 seconds
2019-10-24 18:31:43,938 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8826220035552979 seconds
2019-10-24 18:31:46,949 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.009383201599121 seconds
2019-10-24 18:31:47,368 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.4188809394836426 seconds
2019-10-24 18:31:47,642 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2732701301574707 seconds
2019-10-24 18:31:47,921 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.27726078033447266 seconds
2019-10-24 18:31:48,234 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.31116747856140137 seconds
2019-10-24 18:31:48,952 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7180459499359131 seconds
2019-10-24 18:31:50,298 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3376491069793701 seconds
2019-10-24 18:32:53,652 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.30649995803833 seconds
2019-10-24 18:32:53,924 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27175116539001465 seconds
2019-10-24 18:32:54,527 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6013143062591553 seconds
2019-10-24 18:32:54,593 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06482887268066406 seconds
2019-10-24 18:32:54,648 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05385470390319824 seconds
2019-10-24 18:32:54,692 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188799858093262 seconds
2019-10-24 18:32:57,582 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8882865905761719 seconds
2019-10-24 18:33:00,615 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.0323097705841064 seconds
2019-10-24 18:33:01,012 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.3965492248535156 seconds
2019-10-24 18:33:01,289 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2751882076263428 seconds
2019-10-24 18:33:01,587 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.29682016372680664 seconds
2019-10-24 18:33:02,099 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.5106360912322998 seconds
2019-10-24 18:33:02,867 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7668061256408691 seconds
2019-10-24 18:33:04,108 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2305693626403809 seconds
2019-10-24 18:34:04,977 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.317291259765625 seconds
2019-10-24 18:34:05,241 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26318931579589844 seconds
2019-10-24 18:34:05,835 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.592343807220459 seconds
2019-10-24 18:34:05,899 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06283092498779297 seconds
2019-10-24 18:34:05,941 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.041889190673828125 seconds
2019-10-24 18:34:05,992 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.050862789154052734 seconds
2019-10-24 18:34:08,890 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8950021266937256 seconds
2019-10-24 18:34:11,814 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 2.923417091369629 seconds
2019-10-24 18:34:12,211 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.39574670791625977 seconds
2019-10-24 18:34:12,471 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2603030204772949 seconds
2019-10-24 18:34:12,745 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2713165283203125 seconds
2019-10-24 18:34:13,032 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.28719234466552734 seconds
2019-10-24 18:34:13,832 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7987270355224609 seconds
2019-10-24 18:34:15,277 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4343910217285156 seconds
2019-10-24 18:35:38,390 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.315986394882202 seconds
2019-10-24 18:35:38,682 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2902240753173828 seconds
2019-10-24 18:35:39,333 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6501798629760742 seconds
2019-10-24 18:35:39,402 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06837153434753418 seconds
2019-10-24 18:35:39,451 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04887032508850098 seconds
2019-10-24 18:35:39,497 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04518008232116699 seconds
2019-10-24 18:35:44,897 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.397935390472412 seconds
2019-10-24 18:35:48,010 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.111586570739746 seconds
2019-10-24 18:35:48,430 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.41794872283935547 seconds
2019-10-24 18:35:48,690 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2593071460723877 seconds
2019-10-24 18:35:48,961 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.26928210258483887 seconds
2019-10-24 18:35:49,472 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.5097522735595703 seconds
2019-10-24 18:35:50,261 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7878930568695068 seconds
2019-10-24 18:35:51,746 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4732320308685303 seconds
2019-10-24 18:36:52,235 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.349698781967163 seconds
2019-10-24 18:36:52,508 - root - INFO - SUCCESS Set browser window maximized, Spend 0.273362398147583 seconds
2019-10-24 18:36:53,084 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5735375881195068 seconds
2019-10-24 18:36:53,155 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06981325149536133 seconds
2019-10-24 18:36:53,209 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.052857398986816406 seconds
2019-10-24 18:36:53,262 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05285835266113281 seconds
2019-10-24 18:36:56,259 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.996208906173706 seconds
2019-10-24 18:36:59,413 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.151902198791504 seconds
2019-10-24 18:36:59,837 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.42366647720336914 seconds
2019-10-24 18:37:00,148 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.31017255783081055 seconds
2019-10-24 18:37:00,442 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.293215274810791 seconds
2019-10-24 18:37:00,698 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.255298376083374 seconds
2019-10-24 18:37:01,423 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7238442897796631 seconds
2019-10-24 18:37:02,965 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.523818016052246 seconds
2019-10-24 18:37:37,021 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.302127122879028 seconds
2019-10-24 18:37:37,325 - root - INFO - SUCCESS Set browser window maximized, Spend 0.304187536239624 seconds
2019-10-24 18:37:37,921 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5950298309326172 seconds
2019-10-24 18:37:37,986 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06382918357849121 seconds
2019-10-24 18:37:38,044 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.0578455924987793 seconds
2019-10-24 18:37:38,086 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040892601013183594 seconds
2019-10-24 18:37:41,063 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9745843410491943 seconds
2019-10-24 18:37:44,470 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.4069790840148926 seconds
2019-10-24 18:37:44,882 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.41060590744018555 seconds
2019-10-24 18:37:45,192 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.3091609477996826 seconds
2019-10-24 18:37:45,504 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.31015610694885254 seconds
2019-10-24 18:37:45,762 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.25731325149536133 seconds
2019-10-24 18:37:46,497 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7330288887023926 seconds
2019-10-24 18:37:46,764 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]>, Spend 0.26531410217285156 seconds
2019-10-24 18:37:48,215 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4498112201690674 seconds
2019-10-24 18:38:22,681 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.320990800857544 seconds
2019-10-24 18:38:22,963 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27925801277160645 seconds
2019-10-24 18:38:23,607 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6436657905578613 seconds
2019-10-24 18:38:23,680 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.0718069076538086 seconds
2019-10-24 18:38:23,722 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.041886329650878906 seconds
2019-10-24 18:38:23,768 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04388546943664551 seconds
2019-10-24 18:38:29,142 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.3731985092163086 seconds
2019-10-24 18:38:32,197 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.052888870239258 seconds
2019-10-24 18:38:32,597 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.39893245697021484 seconds
2019-10-24 18:38:32,860 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.26281070709228516 seconds
2019-10-24 18:38:33,133 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.27130579948425293 seconds
2019-10-24 18:38:33,413 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.27922558784484863 seconds
2019-10-24 18:38:34,138 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7238295078277588 seconds
2019-10-24 18:38:34,404 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div>, Spend 0.2613353729248047 seconds
2019-10-24 18:38:35,825 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4199371337890625 seconds
2019-10-24 18:39:21,345 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.269267797470093 seconds
2019-10-24 18:39:21,609 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26139092445373535 seconds
2019-10-24 18:39:22,197 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5873539447784424 seconds
2019-10-24 18:39:22,269 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07081079483032227 seconds
2019-10-24 18:39:22,318 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04687333106994629 seconds
2019-10-24 18:39:22,367 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04886913299560547 seconds
2019-10-24 18:39:25,237 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.868701696395874 seconds
2019-10-24 18:39:28,296 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.0595006942749023 seconds
2019-10-24 18:39:28,694 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.39594101905822754 seconds
2019-10-24 18:39:28,984 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2892615795135498 seconds
2019-10-24 18:39:29,261 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.26429271697998047 seconds
2019-10-24 18:39:29,722 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.4589879512786865 seconds
2019-10-24 18:39:30,456 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7323997020721436 seconds
2019-10-24 18:39:30,730 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input>, Spend 0.26879119873046875 seconds
2019-10-24 18:39:32,051 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3200836181640625 seconds
2019-10-24 18:42:48,705 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.298177003860474 seconds
2019-10-24 18:42:48,978 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2709355354309082 seconds
2019-10-24 18:42:49,589 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6096513271331787 seconds
2019-10-24 18:42:49,745 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.15555143356323242 seconds
2019-10-24 18:42:49,779 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03290915489196777 seconds
2019-10-24 18:42:49,808 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.026882648468017578 seconds
2019-10-24 18:42:52,729 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.919102668762207 seconds
2019-10-24 18:42:55,751 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.0210537910461426 seconds
2019-10-24 18:42:56,144 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.39192628860473633 seconds
2019-10-24 18:42:56,413 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2683217525482178 seconds
2019-10-24 18:42:56,724 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.3101460933685303 seconds
2019-10-24 18:42:57,236 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.5094945430755615 seconds
2019-10-24 18:42:57,969 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7319049835205078 seconds
2019-10-24 18:42:58,227 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span>, Spend 0.2543213367462158 seconds
2019-10-24 18:42:59,595 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3671875 seconds
2019-10-24 18:46:11,376 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.273968696594238 seconds
2019-10-24 18:46:11,642 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2646217346191406 seconds
2019-10-24 18:46:12,304 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6613743305206299 seconds
2019-10-24 18:46:12,387 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.08178186416625977 seconds
2019-10-24 18:46:12,439 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05186128616333008 seconds
2019-10-24 18:46:12,482 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089212417602539 seconds
2019-10-24 18:46:15,384 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.899867057800293 seconds
2019-10-24 18:46:18,695 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.31164288520813 seconds
2019-10-24 18:46:19,036 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.3390207290649414 seconds
2019-10-24 18:46:19,299 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.26178789138793945 seconds
2019-10-24 18:46:19,563 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2633399963378906 seconds
2019-10-24 18:46:19,821 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.2573127746582031 seconds
2019-10-24 18:46:20,545 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7246558666229248 seconds
2019-10-24 18:46:20,830 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.28047966957092285 seconds
2019-10-24 18:46:22,248 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.41650390625 seconds
2019-10-24 18:46:45,770 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.30418086051941 seconds
2019-10-24 18:46:46,042 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2702751159667969 seconds
2019-10-24 18:46:46,643 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6003577709197998 seconds
2019-10-24 18:46:46,761 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.11768698692321777 seconds
2019-10-24 18:46:46,805 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04288530349731445 seconds
2019-10-24 18:46:46,847 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040402889251708984 seconds
2019-10-24 18:46:49,780 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9321069717407227 seconds
2019-10-24 18:46:52,837 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.054677724838257 seconds
2019-10-24 18:46:53,239 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.40192556381225586 seconds
2019-10-24 18:46:53,531 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.28984832763671875 seconds
2019-10-24 18:46:53,844 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.31174778938293457 seconds
2019-10-24 18:46:54,297 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.45293092727661133 seconds
2019-10-24 18:46:55,078 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7799146175384521 seconds
2019-10-24 18:46:55,346 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.26348066329956055 seconds
2019-10-24 18:53:33,706 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.2535080909729 seconds
2019-10-24 18:53:33,974 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26771998405456543 seconds
2019-10-24 18:53:34,682 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7066271305084229 seconds
2019-10-24 18:53:34,769 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.0857703685760498 seconds
2019-10-24 18:53:34,820 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.050864219665527344 seconds
2019-10-24 18:53:34,866 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04388427734375 seconds
2019-10-24 18:53:37,838 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9720444679260254 seconds
2019-10-24 18:53:41,299 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.459519624710083 seconds
2019-10-24 18:53:41,707 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.40688157081604004 seconds
2019-10-24 18:53:41,967 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.25888657569885254 seconds
2019-10-24 18:53:42,243 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.27454257011413574 seconds
2019-10-24 18:53:42,537 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.29425692558288574 seconds
2019-10-24 18:53:43,300 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7609808444976807 seconds
2019-10-24 18:53:45,596 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.29421162605285645 seconds
2019-10-24 19:18:26,087 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.289807319641113 seconds
2019-10-24 19:18:26,358 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2712726593017578 seconds
2019-10-24 19:18:27,002 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6423423290252686 seconds
2019-10-24 19:18:27,182 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.18005824089050293 seconds
2019-10-24 19:18:27,229 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04502367973327637 seconds
2019-10-24 19:18:27,270 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04134178161621094 seconds
2019-10-24 19:18:30,182 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9096951484680176 seconds
2019-10-24 19:18:33,742 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.558314085006714 seconds
2019-10-24 19:18:34,040 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.29741930961608887 seconds
2019-10-24 19:18:34,306 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2642941474914551 seconds
2019-10-24 19:18:34,571 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2641029357910156 seconds
2019-10-24 19:18:34,844 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.2733423709869385 seconds
2019-10-24 19:18:35,569 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7250630855560303 seconds
2019-10-24 19:18:37,846 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.2738344669342041 seconds
2019-10-24 19:20:14,583 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.376420259475708 seconds
2019-10-24 19:20:14,892 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3071713447570801 seconds
2019-10-24 19:20:15,605 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7123353481292725 seconds
2019-10-24 19:20:15,691 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.08329010009765625 seconds
2019-10-24 19:20:15,739 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.045876502990722656 seconds
2019-10-24 19:20:15,773 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03333306312561035 seconds
2019-10-24 19:20:18,677 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9035859107971191 seconds
2019-10-24 19:20:21,752 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.0745768547058105 seconds
2019-10-24 19:20:22,162 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.4085216522216797 seconds
2019-10-24 19:20:22,432 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.26828575134277344 seconds
2019-10-24 19:20:22,702 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2673776149749756 seconds
2019-10-24 19:20:23,215 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.5111873149871826 seconds
2019-10-24 19:20:23,967 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7509875297546387 seconds
2019-10-24 19:20:26,218 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.25091004371643066 seconds
2019-10-24 19:21:52,733 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.827944278717041 seconds
2019-10-24 19:21:53,009 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27430081367492676 seconds
2019-10-24 19:21:53,618 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6089398860931396 seconds
2019-10-24 19:21:53,697 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07779192924499512 seconds
2019-10-24 19:21:53,757 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.057845115661621094 seconds
2019-10-24 19:21:53,802 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.042882680892944336 seconds
2019-10-24 19:21:59,292 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.48764967918396 seconds
2019-10-24 19:22:02,452 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.1598315238952637 seconds
2019-10-24 19:22:02,830 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.3780484199523926 seconds
2019-10-24 19:22:03,101 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2672898769378662 seconds
2019-10-24 19:22:03,392 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2902355194091797 seconds
2019-10-24 19:22:03,657 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.26429128646850586 seconds
2019-10-24 19:22:04,403 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7447900772094727 seconds
2019-10-24 19:22:06,751 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.34706544876098633 seconds
2019-10-24 19:22:39,773 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.307103633880615 seconds
2019-10-24 19:22:40,044 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2685093879699707 seconds
2019-10-24 19:22:40,636 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5916094779968262 seconds
2019-10-24 19:22:40,684 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.04788327217102051 seconds
2019-10-24 19:22:40,718 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.032949209213256836 seconds
2019-10-24 19:22:40,748 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.029919147491455078 seconds
2019-10-24 19:22:43,706 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9568400382995605 seconds
2019-10-24 19:22:46,701 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 2.9947123527526855 seconds
2019-10-24 19:22:47,057 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.35464024543762207 seconds
2019-10-24 19:22:47,321 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2628302574157715 seconds
2019-10-24 19:22:47,623 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.3012082576751709 seconds
2019-10-24 19:22:47,946 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.3201899528503418 seconds
2019-10-24 19:22:48,644 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.6972835063934326 seconds
2019-10-24 19:22:50,896 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.2508101463317871 seconds
2019-10-24 19:22:50,896 - root - INFO - FAIL Unable to click element: <>, Spend 0.0 seconds
2019-10-24 19:25:53,814 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.321336269378662 seconds
2019-10-24 19:25:54,092 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27577805519104004 seconds
2019-10-24 19:25:54,858 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7651710510253906 seconds
2019-10-24 19:25:54,975 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.11568927764892578 seconds
2019-10-24 19:25:55,028 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05285835266113281 seconds
2019-10-24 19:25:55,070 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089069366455078 seconds
2019-10-24 19:26:00,468 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.396806478500366 seconds
2019-10-24 19:26:04,025 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.5556929111480713 seconds
2019-10-24 19:26:04,437 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.41092705726623535 seconds
2019-10-24 19:26:04,696 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.25927162170410156 seconds
2019-10-24 19:26:04,966 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2692105770111084 seconds
2019-10-24 19:26:05,226 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.2591285705566406 seconds
2019-10-24 19:26:05,972 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wuzs0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7445192337036133 seconds
2019-10-24 19:26:08,259 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.28719449043273926 seconds
2019-10-24 19:26:08,502 - root - INFO - SUCCESS Clicked element: <xpath -> //div[@id='addUserModal']/div[@class='modal-footer']/button[@class='btn btn-warning']>, Spend 0.24032306671142578 seconds
2019-10-24 19:26:11,619 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1162364482879639 seconds
2019-10-24 19:27:41,104 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.30994963645935 seconds
2019-10-24 19:27:41,375 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2698688507080078 seconds
2019-10-24 19:27:41,973 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5959534645080566 seconds
2019-10-24 19:27:42,055 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.08178043365478516 seconds
2019-10-24 19:27:42,112 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.055367469787597656 seconds
2019-10-24 19:27:42,154 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040891408920288086 seconds
2019-10-24 19:27:44,796 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6402862071990967 seconds
2019-10-24 19:28:32,415 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.275887966156006 seconds
2019-10-24 19:28:32,675 - root - INFO - SUCCESS Set browser window maximized, Spend 0.25885987281799316 seconds
2019-10-24 19:28:33,334 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6591980457305908 seconds
2019-10-24 19:28:33,404 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.0688173770904541 seconds
2019-10-24 19:28:33,453 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.048877716064453125 seconds
2019-10-24 19:28:33,480 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.026926755905151367 seconds
2019-10-24 19:28:36,232 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7502377033233643 seconds
2019-10-24 19:50:31,326 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.278417348861694 seconds
2019-10-24 19:50:31,594 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2653319835662842 seconds
2019-10-24 19:50:32,229 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6322975158691406 seconds
2019-10-24 19:50:32,306 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07679319381713867 seconds
2019-10-24 19:50:32,363 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05585813522338867 seconds
2019-10-24 19:50:32,409 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04488015174865723 seconds
2019-10-24 19:50:35,092 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6805410385131836 seconds
2019-10-24 19:50:36,561 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.4680414199829102 seconds
2019-10-24 19:50:36,677 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.11668825149536133 seconds
2019-10-24 19:51:26,471 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.302080392837524 seconds
2019-10-24 19:51:26,758 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2862415313720703 seconds
2019-10-24 19:51:27,383 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6228494644165039 seconds
2019-10-24 19:51:27,464 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.08029508590698242 seconds
2019-10-24 19:51:27,512 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04687380790710449 seconds
2019-10-24 19:51:27,561 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04886913299560547 seconds
2019-10-24 19:51:30,233 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6689789295196533 seconds
2019-10-24 19:51:31,699 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.466050148010254 seconds
2019-10-24 19:51:31,819 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.11968111991882324 seconds
2019-10-24 19:51:32,114 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_auto01, Spend 0.293626070022583 seconds
2019-10-24 19:51:32,205 - root - INFO - SUCCESS Clear and type element: <name->contact> content: 吴祖顺, Spend 0.09026932716369629 seconds
2019-10-24 19:51:32,302 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 13071089287, Spend 0.0952460765838623 seconds
2019-10-24 19:51:33,549 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.24627232551574707 seconds

View File

@ -1,758 +0,0 @@
2019-10-25 09:00:04,913 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.783934116363525 seconds
2019-10-25 09:00:05,190 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2752680778503418 seconds
2019-10-25 09:00:06,042 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.8506910800933838 seconds
2019-10-25 09:00:06,116 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07380294799804688 seconds
2019-10-25 09:00:06,168 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05086469650268555 seconds
2019-10-25 09:00:06,214 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04487967491149902 seconds
2019-10-25 09:00:09,008 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.792804479598999 seconds
2019-10-25 09:00:11,454 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 2.443913698196411 seconds
2019-10-25 09:00:11,585 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.13060545921325684 seconds
2019-10-25 09:00:11,858 - root - INFO - SUCCESS Clicked element: <xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div[1]/div/div[2]/form/div[1]/div[1]/div/div/button[2]>, Spend 0.270277738571167 seconds
2019-10-25 09:00:16,918 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto01')]>, Spend 5.059860706329346 seconds
2019-10-25 09:01:17,456 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.302035808563232 seconds
2019-10-25 09:01:17,746 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2882235050201416 seconds
2019-10-25 09:01:18,387 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6382913589477539 seconds
2019-10-25 09:01:18,463 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07679533958435059 seconds
2019-10-25 09:01:18,510 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.045877695083618164 seconds
2019-10-25 09:01:18,549 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03689980506896973 seconds
2019-10-25 09:01:21,306 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7552282810211182 seconds
2019-10-25 09:01:23,195 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 1.8895764350891113 seconds
2019-10-25 09:01:23,334 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.13763165473937988 seconds
2019-10-25 09:01:23,621 - root - INFO - SUCCESS Clicked element: <xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div[1]/div/div[2]/form/div[1]/div[1]/div/div/button[2]>, Spend 0.2865147590637207 seconds
2019-10-25 09:01:28,674 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto01')]>, Spend 5.0526556968688965 seconds
2019-10-25 09:01:47,690 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.814364194869995 seconds
2019-10-25 09:01:47,991 - root - INFO - SUCCESS Set browser window maximized, Spend 0.298398494720459 seconds
2019-10-25 09:01:48,614 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6225192546844482 seconds
2019-10-25 09:01:48,688 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07280611991882324 seconds
2019-10-25 09:01:48,735 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0448756217956543 seconds
2019-10-25 09:01:48,774 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0379023551940918 seconds
2019-10-25 09:01:51,572 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.796856164932251 seconds
2019-10-25 09:01:53,775 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 2.2021114826202393 seconds
2019-10-25 09:01:53,775 - root - INFO - FAIL Unable to click element: <xpath=(//button[@type='button'])[10]>, Spend 0.0 seconds
2019-10-25 09:02:31,170 - root - INFO - SUCCESS Start a new browser: firefox, Spend 13.016868829727173 seconds
2019-10-25 09:02:31,447 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27426791191101074 seconds
2019-10-25 09:02:32,856 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 1.4052844047546387 seconds
2019-10-25 09:02:33,390 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.5325775146484375 seconds
2019-10-25 09:02:33,435 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04388236999511719 seconds
2019-10-25 09:02:33,478 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188704490661621 seconds
2019-10-25 09:02:36,323 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8437340259552002 seconds
2019-10-25 09:02:38,664 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 2.3411476612091064 seconds
2019-10-25 09:02:38,814 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.14960002899169922 seconds
2019-10-25 09:02:39,120 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.3051893711090088 seconds
2019-10-25 09:02:45,160 - root - INFO - FAIL Unable element <xpath->//div[@id='selectClientModal']/div[2]/div/div[@class='row search-form-default']/div[@class='col-md-12']/from/div[@class='input-group']/div[@class='input-count']/input> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 5.039053678512573 seconds
2019-10-25 09:06:26,315 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.788201808929443 seconds
2019-10-25 09:06:26,590 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27526354789733887 seconds
2019-10-25 09:06:27,165 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.573540449142456 seconds
2019-10-25 09:06:27,331 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.16456198692321777 seconds
2019-10-25 09:06:27,374 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.043882131576538086 seconds
2019-10-25 09:06:27,412 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789854049682617 seconds
2019-10-25 09:06:30,058 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6442532539367676 seconds
2019-10-25 09:06:31,702 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.642608880996704 seconds
2019-10-25 09:06:31,852 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.14960002899169922 seconds
2019-10-25 09:06:32,299 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.44583630561828613 seconds
2019-10-25 09:06:52,019 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.803930521011353 seconds
2019-10-25 09:06:52,292 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2727234363555908 seconds
2019-10-25 09:06:52,896 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6034340858459473 seconds
2019-10-25 09:06:52,969 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.0718076229095459 seconds
2019-10-25 09:06:53,024 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05386018753051758 seconds
2019-10-25 09:06:53,063 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789854049682617 seconds
2019-10-25 09:06:55,727 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6640608310699463 seconds
2019-10-25 09:06:57,213 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.4850289821624756 seconds
2019-10-25 09:06:57,373 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.15857529640197754 seconds
2019-10-25 09:06:57,801 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.42784738540649414 seconds
2019-10-25 09:07:03,871 - root - INFO - FAIL Unable element <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div/div[@class='row search-form-default']/div[@class='col-md-12']/from/div[@class='input-group']/div[@class='input-count']/input> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 5.068715333938599 seconds
2019-10-25 09:07:54,999 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.756657361984253 seconds
2019-10-25 09:07:55,274 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2735781669616699 seconds
2019-10-25 09:07:55,883 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6088371276855469 seconds
2019-10-25 09:07:55,975 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.09075736999511719 seconds
2019-10-25 09:07:56,032 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05585312843322754 seconds
2019-10-25 09:07:56,071 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.036900997161865234 seconds
2019-10-25 09:07:58,743 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6710164546966553 seconds
2019-10-25 09:08:00,219 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.4760544300079346 seconds
2019-10-25 09:08:00,376 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.15658187866210938 seconds
2019-10-25 09:08:00,799 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.4219081401824951 seconds
2019-10-25 09:08:07,851 - root - INFO - FAIL Unable element <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div/div[@class='row search-form-default']/div[@class='col-md-12']/from/div[@class='input-group']/div[@class='input-count']/input> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 5.050725936889648 seconds
2019-10-25 09:10:25,810 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.814008951187134 seconds
2019-10-25 09:10:26,123 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3133833408355713 seconds
2019-10-25 09:10:26,841 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7180812358856201 seconds
2019-10-25 09:10:26,921 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07878971099853516 seconds
2019-10-25 09:10:26,964 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04089164733886719 seconds
2019-10-25 09:10:27,004 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889870643615723 seconds
2019-10-25 09:10:30,024 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.0182840824127197 seconds
2019-10-25 09:10:31,772 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.745534896850586 seconds
2019-10-25 09:10:32,220 - root - INFO - FAIL Unable to click element: <xpath->(//button[@type='button'])[10]>, Spend 0.4468047618865967 seconds
2019-10-25 09:11:12,978 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.282794713973999 seconds
2019-10-25 09:11:13,282 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3024170398712158 seconds
2019-10-25 09:11:13,952 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6689736843109131 seconds
2019-10-25 09:11:14,009 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.05684781074523926 seconds
2019-10-25 09:11:14,041 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0329129695892334 seconds
2019-10-25 09:11:14,070 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.028414011001586914 seconds
2019-10-25 09:11:17,342 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.2700541019439697 seconds
2019-10-25 09:11:19,928 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 2.5841169357299805 seconds
2019-10-25 09:11:20,095 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.16655397415161133 seconds
2019-10-25 09:11:20,419 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.3231353759765625 seconds
2019-10-25 09:35:42,786 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.782870531082153 seconds
2019-10-25 09:35:43,061 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27322936058044434 seconds
2019-10-25 09:35:43,650 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5874300003051758 seconds
2019-10-25 09:35:43,709 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.05781221389770508 seconds
2019-10-25 09:35:43,748 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03889608383178711 seconds
2019-10-25 09:35:43,775 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.025931835174560547 seconds
2019-10-25 09:35:46,494 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7181215286254883 seconds
2019-10-25 09:35:48,151 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.6554932594299316 seconds
2019-10-25 09:35:48,314 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.16256499290466309 seconds
2019-10-25 09:35:48,633 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.31815242767333984 seconds
2019-10-25 09:35:51,254 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 0.618316650390625 seconds
2019-10-25 09:35:57,300 - root - INFO - FAIL Unable to click element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/able-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 5.0448737144470215 seconds
2019-10-25 09:48:05,938 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.767379999160767 seconds
2019-10-25 09:48:06,207 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26754236221313477 seconds
2019-10-25 09:48:06,769 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5625050067901611 seconds
2019-10-25 09:48:06,841 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.06981372833251953 seconds
2019-10-25 09:48:06,890 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04887056350708008 seconds
2019-10-25 09:48:06,934 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.041886091232299805 seconds
2019-10-25 09:48:09,623 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6891529560089111 seconds
2019-10-25 09:48:11,198 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.5728209018707275 seconds
2019-10-25 09:48:11,348 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.14856743812561035 seconds
2019-10-25 09:48:11,770 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.421830415725708 seconds
2019-10-25 09:48:14,474 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 0.7023735046386719 seconds
2019-10-25 09:48:21,544 - root - INFO - FAIL Unable to click element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/able-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 5.06857705116272 seconds
2019-10-25 09:49:55,940 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.299197435379028 seconds
2019-10-25 09:49:56,208 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26631593704223633 seconds
2019-10-25 09:49:56,812 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6043565273284912 seconds
2019-10-25 09:49:56,976 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.16156840324401855 seconds
2019-10-25 09:49:57,021 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04388260841369629 seconds
2019-10-25 09:49:57,062 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989291191101074 seconds
2019-10-25 09:49:59,762 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6990201473236084 seconds
2019-10-25 09:50:01,326 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.562920093536377 seconds
2019-10-25 09:50:01,488 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.161574125289917 seconds
2019-10-25 09:50:01,920 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.42984986305236816 seconds
2019-10-25 09:50:04,522 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 0.6012146472930908 seconds
2019-10-25 09:50:06,801 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.2772552967071533 seconds
2019-10-25 09:50:07,042 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-footer']/button[@class='btn btn-flat btn-primary']>, Spend 0.24068140983581543 seconds
2019-10-25 09:50:07,126 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wuzs_teant_0001, Spend 0.0827794075012207 seconds
2019-10-25 09:50:07,222 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzs_teant_0001, Spend 0.09574580192565918 seconds
2019-10-25 09:50:07,316 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.09275031089782715 seconds
2019-10-25 09:50:07,390 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.0738072395324707 seconds
2019-10-25 09:50:07,498 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wzs@qq.com, Spend 0.1077113151550293 seconds
2019-10-25 09:50:07,647 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.14760518074035645 seconds
2019-10-25 09:50:11,066 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4176101684570312 seconds
2019-10-25 09:50:48,811 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.764718532562256 seconds
2019-10-25 09:50:49,124 - root - INFO - SUCCESS Set browser window maximized, Spend 0.31316184997558594 seconds
2019-10-25 09:50:49,757 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6313076019287109 seconds
2019-10-25 09:50:49,876 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.1196751594543457 seconds
2019-10-25 09:50:49,904 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.02792525291442871 seconds
2019-10-25 09:50:49,930 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.025931119918823242 seconds
2019-10-25 09:50:52,629 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6969985961914062 seconds
2019-10-25 09:50:54,227 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.5967304706573486 seconds
2019-10-25 09:50:54,384 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.15558433532714844 seconds
2019-10-25 09:50:54,819 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.43389201164245605 seconds
2019-10-25 09:50:57,571 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 0.750446081161499 seconds
2019-10-25 09:51:00,923 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.35027289390563965 seconds
2019-10-25 09:51:01,157 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-footer']/button[@class='btn btn-flat btn-primary']>, Spend 0.23371577262878418 seconds
2019-10-25 09:51:01,264 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wuzs_teant_0001, Spend 0.1047201156616211 seconds
2019-10-25 09:51:01,362 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzs_teant_0001, Spend 0.09674191474914551 seconds
2019-10-25 09:51:01,432 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.06981420516967773 seconds
2019-10-25 09:51:01,493 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.06083798408508301 seconds
2019-10-25 09:51:01,556 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wzs@qq.com, Spend 0.06183481216430664 seconds
2019-10-25 09:51:02,288 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.7310471534729004 seconds
2019-10-25 09:51:07,541 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 3.2521393299102783 seconds
2019-10-25 10:13:34,184 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.832846641540527 seconds
2019-10-25 10:13:34,459 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2732694149017334 seconds
2019-10-25 10:13:35,185 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7236878871917725 seconds
2019-10-25 10:13:35,267 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.08078479766845703 seconds
2019-10-25 10:13:35,313 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04587745666503906 seconds
2019-10-25 10:13:35,352 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690171241760254 seconds
2019-10-25 10:13:38,116 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7636735439300537 seconds
2019-10-25 10:13:39,984 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.8670082092285156 seconds
2019-10-25 10:13:40,146 - root - INFO - SUCCESS Clicked element: <xpath->//div[5]/button/i>, Spend 0.160569429397583 seconds
2019-10-25 10:13:40,533 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'请选择运营部门')]>, Spend 0.3869655132293701 seconds
2019-10-25 10:13:41,164 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 0.6297755241394043 seconds
2019-10-25 10:13:41,437 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/div/div/button[2]/i>, Spend 0.2724137306213379 seconds
2019-10-25 10:13:41,689 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto01')]>, Spend 0.24967694282531738 seconds
2019-10-25 10:13:41,743 - root - INFO - FAIL Unable to clear and type element: <xpath->//div[3]/div/div/button[2]/i> content: wuzs_auto01_project, Spend 0.05185961723327637 seconds
2019-10-25 10:16:09,380 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.777178049087524 seconds
2019-10-25 10:16:09,659 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2777824401855469 seconds
2019-10-25 10:16:10,236 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5764214992523193 seconds
2019-10-25 10:16:10,320 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.0827782154083252 seconds
2019-10-25 10:16:10,386 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.06482768058776855 seconds
2019-10-25 10:16:10,427 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.039893388748168945 seconds
2019-10-25 10:16:13,074 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6450419425964355 seconds
2019-10-25 10:16:14,508 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.432190179824829 seconds
2019-10-25 10:16:15,938 - root - INFO - SUCCESS Clicked element: <xpath->//div[5]/button/i>, Spend 1.4297473430633545 seconds
2019-10-25 10:16:16,223 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'请选择运营部门')]>, Spend 0.2837233543395996 seconds
2019-10-25 10:16:16,809 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: wuzs_auto01,and sleep 0.5 seconds,input ENTER key, Spend 0.5839111804962158 seconds
2019-10-25 10:16:17,088 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/div/div/button[2]/i>, Spend 0.27866029739379883 seconds
2019-10-25 10:16:17,329 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto01')]>, Spend 0.24036145210266113 seconds
2019-10-25 10:16:17,476 - root - INFO - SUCCESS Clear and type element: <name->projectName> content: wuzs_auto01_project, Spend 0.14461183547973633 seconds
2019-10-25 10:16:17,548 - root - INFO - SUCCESS Clear and type element: <name->projectDescription> content: wuzs_auto, Spend 0.07081246376037598 seconds
2019-10-25 10:16:17,810 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.26130151748657227 seconds
2019-10-25 10:43:32,544 - root - INFO - ############################### START ###############################
2019-10-25 10:43:41,489 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.945842742919922 seconds
2019-10-25 10:43:41,756 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26451587677001953 seconds
2019-10-25 10:43:42,291 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5335745811462402 seconds
2019-10-25 10:43:42,337 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.045879364013671875 seconds
2019-10-25 10:43:42,372 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03390789031982422 seconds
2019-10-25 10:43:42,394 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 12344, Spend 0.01994633674621582 seconds
2019-10-25 10:43:50,924 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.5282959938049316 seconds
2019-10-25 10:43:50,928 - root - INFO - SUCCESS Get current window title, Spend 0.003990650177001953 seconds
2019-10-25 10:43:52,182 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2518792152404785 seconds
2019-10-25 10:43:52,182 - root - INFO - ############################### End ###############################
2019-10-25 10:44:37,656 - root - INFO - ############################### START ###############################
2019-10-25 10:44:46,463 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.804632902145386 seconds
2019-10-25 10:44:46,741 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27670741081237793 seconds
2019-10-25 10:44:47,410 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6672146320343018 seconds
2019-10-25 10:44:47,476 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06582427024841309 seconds
2019-10-25 10:44:47,521 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04488420486450195 seconds
2019-10-25 10:44:47,562 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 12344, Spend 0.0388951301574707 seconds
2019-10-25 10:44:56,151 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.588505506515503 seconds
2019-10-25 10:44:56,160 - root - INFO - SUCCESS Get current window url, Spend 0.006982326507568359 seconds
2019-10-25 10:44:57,362 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2017929553985596 seconds
2019-10-25 10:44:57,363 - root - INFO - ############################### End ###############################
2019-10-25 11:29:41,390 - root - INFO - ############################### START ###############################
2019-10-25 11:29:50,174 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.784173250198364 seconds
2019-10-25 11:29:50,438 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2634921073913574 seconds
2019-10-25 11:29:51,440 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 0.9893884658813477 seconds
2019-10-25 11:29:51,441 - root - INFO - ############################### End ###############################
2019-10-25 12:48:02,908 - root - INFO - ############################### START ###############################
2019-10-25 12:48:12,717 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.807471513748169 seconds
2019-10-25 12:48:12,986 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2665562629699707 seconds
2019-10-25 12:48:18,027 - root - INFO - FAIL Unable element <xpath->(//input[@type='text'])[12]> type content: sichuan,and sleep 0.5 seconds,input ENTER key, Spend 5.028571367263794 seconds
2019-10-25 12:48:19,597 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.5689010620117188 seconds
2019-10-25 12:48:19,598 - root - INFO - ############################### End ###############################
2019-10-25 12:49:56,999 - root - INFO - ############################### START ###############################
2019-10-25 12:50:05,842 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.84102725982666 seconds
2019-10-25 12:50:06,120 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27725934982299805 seconds
2019-10-25 12:50:11,187 - root - INFO - FAIL Unable element <css->.ng-touched> type content: sichuan,and sleep 0.5 seconds,input ENTER key, Spend 5.04756760597229 seconds
2019-10-25 12:50:12,307 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1188294887542725 seconds
2019-10-25 12:50:12,307 - root - INFO - ############################### End ###############################
2019-10-25 15:32:45,094 - root - INFO - ############################### START ###############################
2019-10-25 15:32:54,366 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.270931243896484 seconds
2019-10-25 15:32:54,638 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27152466773986816 seconds
2019-10-25 15:32:59,678 - root - INFO - FAIL Unable element <css->.ng-touched> type content: sichuan,and sleep 0.5 seconds,input ENTER key, Spend 5.0307676792144775 seconds
2019-10-25 15:33:00,633 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 0.9534518718719482 seconds
2019-10-25 15:33:00,634 - root - INFO - ############################### End ###############################
2019-10-25 15:37:07,653 - root - INFO - ############################### START ###############################
2019-10-25 15:37:16,904 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.248647928237915 seconds
2019-10-25 15:37:17,169 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2656726837158203 seconds
2019-10-25 15:37:22,214 - root - INFO - FAIL Unable element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: sichuan,and sleep 0.5 seconds,input ENTER key, Spend 5.033360958099365 seconds
2019-10-25 15:37:23,238 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.023263692855835 seconds
2019-10-25 15:37:23,238 - root - INFO - ############################### End ###############################
2019-10-25 15:37:51,528 - root - INFO - ############################### START ###############################
2019-10-25 15:38:00,806 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.276516199111938 seconds
2019-10-25 15:38:01,089 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28034090995788574 seconds
2019-10-25 15:38:06,152 - root - INFO - FAIL Unable element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: sichuan,and sleep 0.5 seconds,input ENTER key, Spend 5.042552709579468 seconds
2019-10-25 15:38:07,345 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1920101642608643 seconds
2019-10-25 15:38:07,345 - root - INFO - ############################### End ###############################
2019-10-25 15:40:34,057 - root - INFO - ############################### START ###############################
2019-10-25 15:40:42,860 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.801901817321777 seconds
2019-10-25 15:40:43,137 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2752645015716553 seconds
2019-10-25 15:40:50,193 - root - INFO - FAIL Unable element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: sichuan,and sleep 0.5 seconds,input ENTER key, Spend 5.04517674446106 seconds
2019-10-25 15:40:51,330 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.136059284210205 seconds
2019-10-25 15:40:51,331 - root - INFO - ############################### End ###############################
2019-10-25 15:41:20,564 - root - INFO - ############################### START ###############################
2019-10-25 15:41:29,890 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.324853897094727 seconds
2019-10-25 15:41:30,153 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26281070709228516 seconds
2019-10-25 15:41:33,285 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1209220886230469 seconds
2019-10-25 15:41:33,286 - root - INFO - ############################### End ###############################
2019-10-25 15:41:53,574 - root - INFO - ############################### START ###############################
2019-10-25 15:42:03,356 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.781161308288574 seconds
2019-10-25 15:42:03,619 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2623412609100342 seconds
2019-10-25 15:42:10,694 - root - INFO - FAIL Element: <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> is not exist, Spend 5.064785480499268 seconds
2019-10-25 15:42:15,747 - root - INFO - FAIL Unable element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: sichuan,and sleep 0.5 seconds,input ENTER key, Spend 5.051140785217285 seconds
2019-10-25 15:42:16,533 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 0.7839341163635254 seconds
2019-10-25 15:42:16,534 - root - INFO - ############################### End ###############################
2019-10-25 16:25:32,402 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.32136869430542 seconds
2019-10-25 16:25:32,669 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26748108863830566 seconds
2019-10-25 16:32:49,531 - root - INFO - ############################### START ###############################
2019-10-25 16:32:58,787 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.25558090209961 seconds
2019-10-25 16:32:59,054 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2648134231567383 seconds
2019-10-25 16:32:59,798 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7446365356445312 seconds
2019-10-25 16:32:59,879 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07878994941711426 seconds
2019-10-25 16:32:59,931 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05086469650268555 seconds
2019-10-25 16:32:59,978 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04587674140930176 seconds
2019-10-25 16:33:02,903 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9235281944274902 seconds
2019-10-25 16:33:06,103 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 3.1757493019104004 seconds
2019-10-25 16:33:06,428 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.32410097122192383 seconds
2019-10-25 16:33:06,793 - root - INFO - SUCCESS Clicked element: <xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div[1]/div/div[2]/form/div[1]/div[1]/div/div/button[2]>, Spend 0.3630509376525879 seconds
2019-10-25 16:33:07,052 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河北')]>, Spend 0.25830864906311035 seconds
2019-10-25 16:33:07,221 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wzs_0001, Spend 0.16887521743774414 seconds
2019-10-25 16:33:07,388 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzushun, Spend 0.1655595302581787 seconds
2019-10-25 16:33:07,523 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.13364171981811523 seconds
2019-10-25 16:33:07,683 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.15857696533203125 seconds
2019-10-25 16:33:07,832 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wuzs@193.om, Spend 0.14760613441467285 seconds
2019-10-25 16:33:08,159 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.32712602615356445 seconds
2019-10-25 16:33:09,029 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wzs_0001,and sleep 0.5 seconds,input ENTER key, Spend 0.8681497573852539 seconds
2019-10-25 16:33:10,040 - root - INFO - SUCCESS Element: <xpath->//span[contains(.,'wzs_0001')]> is exist, Spend 1.0108873844146729 seconds
2019-10-25 16:33:11,230 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1902947425842285 seconds
2019-10-25 16:33:11,231 - root - INFO - ############################### End ###############################
2019-10-25 16:58:06,239 - root - INFO - ############################### START ###############################
2019-10-25 16:58:15,641 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.399869680404663 seconds
2019-10-25 16:58:15,921 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27927136421203613 seconds
2019-10-25 16:58:16,547 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6263282299041748 seconds
2019-10-25 16:58:16,624 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.0747981071472168 seconds
2019-10-25 16:58:16,675 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.0498659610748291 seconds
2019-10-25 16:58:16,718 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04288530349731445 seconds
2019-10-25 16:58:22,120 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.3999152183532715 seconds
2019-10-25 16:58:25,101 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 2.960084915161133 seconds
2019-10-25 16:58:25,981 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: Sheet11111,and sleep 0.5 seconds,input ENTER key, Spend 0.880645751953125 seconds
2019-10-25 16:58:31,078 - root - INFO - FAIL Unable to get element text element: <xpath->//span[contains(.,'Sheet11111')]//parent::div/parent::td/parent::tr/td[4]/div/span>, Spend 5.096413612365723 seconds
2019-10-25 16:58:32,616 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.538846492767334 seconds
2019-10-25 16:58:32,617 - root - INFO - ############################### End ###############################
2019-10-25 16:58:55,758 - root - INFO - ############################### START ###############################
2019-10-25 16:59:05,076 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.316096305847168 seconds
2019-10-25 16:59:05,371 - root - INFO - SUCCESS Set browser window maximized, Spend 0.29454636573791504 seconds
2019-10-25 16:59:06,019 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.646268367767334 seconds
2019-10-25 16:59:06,115 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.09474563598632812 seconds
2019-10-25 16:59:06,171 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.055852651596069336 seconds
2019-10-25 16:59:06,221 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04787802696228027 seconds
2019-10-25 16:59:11,639 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.4176385402679443 seconds
2019-10-25 16:59:14,907 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 3.247318744659424 seconds
2019-10-25 16:59:15,908 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: Sheet11111,and sleep 0.5 seconds,input ENTER key, Spend 1.0013222694396973 seconds
2019-10-25 16:59:20,960 - root - INFO - FAIL Element: <xpath->//span[contains(.,'Sheet11111')]//parent::div/parent::td/parent::tr/td[4]/div/span> is not exist, Spend 5.049503803253174 seconds
2019-10-25 16:59:26,021 - root - INFO - FAIL Unable to get element text element: <xpath->//span[contains(.,'Sheet11111')]//parent::div/parent::td/parent::tr/td[4]/div/span>, Spend 5.061448335647583 seconds
2019-10-25 16:59:27,522 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.5009782314300537 seconds
2019-10-25 16:59:27,523 - root - INFO - ############################### End ###############################
2019-10-25 17:00:26,420 - root - INFO - ############################### START ###############################
2019-10-25 17:00:36,120 - root - INFO - ############################### START ###############################
2019-10-25 17:00:44,903 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.782521963119507 seconds
2019-10-25 17:00:45,187 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28323984146118164 seconds
2019-10-25 17:00:45,775 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5874745845794678 seconds
2019-10-25 17:00:45,848 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07280468940734863 seconds
2019-10-25 17:00:45,894 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04388284683227539 seconds
2019-10-25 17:00:45,932 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0388951301574707 seconds
2019-10-25 17:00:48,878 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9423282146453857 seconds
2019-10-25 17:00:51,769 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 2.870326519012451 seconds
2019-10-25 17:00:52,556 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: Sheet11111,and sleep 0.5 seconds,input ENTER key, Spend 0.78692626953125 seconds
2019-10-25 17:00:57,637 - root - INFO - FAIL Element: <xpath->//span[contains(.,'Sheet11111')]/parent::div/parent::td/parent::tr/td[4]/div/span> is not exist, Spend 5.080387115478516 seconds
2019-10-25 17:01:02,717 - root - INFO - FAIL Unable to get element text element: <xpath->//span[contains(.,'Sheet11111')]//parent::div/parent::td/parent::tr/td[4]/div/span>, Spend 5.076493978500366 seconds
2019-10-25 17:01:04,231 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.5139744281768799 seconds
2019-10-25 17:01:04,232 - root - INFO - ############################### End ###############################
2019-10-25 17:03:31,305 - root - INFO - ############################### START ###############################
2019-10-25 17:03:41,093 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.786832094192505 seconds
2019-10-25 17:03:41,371 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27725744247436523 seconds
2019-10-25 17:03:42,048 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6762917041778564 seconds
2019-10-25 17:03:42,113 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06482672691345215 seconds
2019-10-25 17:03:42,156 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04188871383666992 seconds
2019-10-25 17:03:42,197 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889727592468262 seconds
2019-10-25 17:03:47,629 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.430821180343628 seconds
2019-10-25 17:03:50,519 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 2.864342451095581 seconds
2019-10-25 17:03:51,448 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: Sheet11111,and sleep 0.5 seconds,input ENTER key, Spend 0.9275166988372803 seconds
2019-10-25 17:03:56,505 - root - INFO - FAIL Element: <xpath->//div[@class='box-body']/table-component/div/table/tbody/> is not exist, Spend 5.056481599807739 seconds
2019-10-25 17:04:01,539 - root - INFO - FAIL Unable to get element text element: <xpath->//span[contains(.,'Sheet11111')]/parent::div/parent::td/parent::tr/td[4]/div/span>, Spend 5.03283429145813 seconds
2019-10-25 17:04:02,586 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.0471665859222412 seconds
2019-10-25 17:04:02,587 - root - INFO - ############################### End ###############################
2019-10-25 17:07:00,642 - root - INFO - ############################### START ###############################
2019-10-25 17:07:09,514 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.87130355834961 seconds
2019-10-25 17:07:09,787 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27127504348754883 seconds
2019-10-25 17:07:10,379 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5914194583892822 seconds
2019-10-25 17:07:10,467 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.08677029609680176 seconds
2019-10-25 17:07:10,513 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04488039016723633 seconds
2019-10-25 17:07:10,553 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889775276184082 seconds
2019-10-25 17:07:15,819 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.2642698287963867 seconds
2019-10-25 17:07:18,860 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 3.0219216346740723 seconds
2019-10-25 17:07:19,679 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: Sheet11111,and sleep 0.5 seconds,input ENTER key, Spend 0.8178117275238037 seconds
2019-10-25 17:07:21,312 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.632594108581543 seconds
2019-10-25 17:07:21,313 - root - INFO - ############################### End ###############################
2019-10-25 17:08:02,165 - root - INFO - ############################### START ###############################
2019-10-25 17:08:11,470 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.303097009658813 seconds
2019-10-25 17:08:11,737 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26630210876464844 seconds
2019-10-25 17:08:12,365 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.625328779220581 seconds
2019-10-25 17:08:12,492 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.12666583061218262 seconds
2019-10-25 17:08:12,539 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04487895965576172 seconds
2019-10-25 17:08:12,578 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.038895368576049805 seconds
2019-10-25 17:08:15,523 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9423153400421143 seconds
2019-10-25 17:08:18,577 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 3.0298967361450195 seconds
2019-10-25 17:08:19,393 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: Sheet11111,and sleep 0.5 seconds,input ENTER key, Spend 0.8148210048675537 seconds
2019-10-25 17:08:24,434 - root - INFO - FAIL Element: <css->ng-scope:nth-child(4) > .wordBreak> is not exist, Spend 5.0405755043029785 seconds
2019-10-25 17:08:24,482 - root - INFO - SUCCESS Get element text element: <css->.ng-scope:nth-child(4) > .wordBreak>, Spend 0.04590916633605957 seconds
2019-10-25 17:08:25,930 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.448131799697876 seconds
2019-10-25 17:08:25,931 - root - INFO - ############################### End ###############################
2019-10-25 17:09:33,550 - root - INFO - ############################### START ###############################
2019-10-25 17:09:42,883 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.332020998001099 seconds
2019-10-25 17:09:43,154 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27079176902770996 seconds
2019-10-25 17:09:43,750 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.594557523727417 seconds
2019-10-25 17:09:43,824 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07280611991882324 seconds
2019-10-25 17:09:43,881 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.056847333908081055 seconds
2019-10-25 17:09:43,928 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04487943649291992 seconds
2019-10-25 17:09:46,882 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9514031410217285 seconds
2019-10-25 17:09:50,607 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 3.70709228515625 seconds
2019-10-25 17:09:51,410 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: Sheet11111,and sleep 0.5 seconds,input ENTER key, Spend 0.8028531074523926 seconds
2019-10-25 17:09:53,437 - root - INFO - SUCCESS Get element text element: <css->.ng-scope:nth-child(4) > .wordBreak>, Spend 0.02592158317565918 seconds
2019-10-25 17:09:54,571 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.132955551147461 seconds
2019-10-25 17:09:54,572 - root - INFO - ############################### End ###############################
2019-10-25 17:10:05,003 - root - INFO - ############################### START ###############################
2019-10-25 17:10:13,951 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.94608187675476 seconds
2019-10-25 17:10:14,254 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3011939525604248 seconds
2019-10-25 17:10:14,843 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.588428258895874 seconds
2019-10-25 17:10:14,911 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06581902503967285 seconds
2019-10-25 17:10:14,954 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04288530349731445 seconds
2019-10-25 17:10:14,996 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.039893150329589844 seconds
2019-10-25 17:10:18,016 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.0192720890045166 seconds
2019-10-25 17:10:20,964 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 2.920374870300293 seconds
2019-10-25 17:10:21,810 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: Sheet11111,and sleep 0.5 seconds,input ENTER key, Spend 0.8447413444519043 seconds
2019-10-25 17:10:23,869 - root - INFO - SUCCESS Get element text element: <css->.ng-scope:nth-child(4) > .wordBreak>, Spend 0.057771921157836914 seconds
2019-10-25 17:10:25,208 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3384206295013428 seconds
2019-10-25 17:10:25,209 - root - INFO - ############################### End ###############################
2019-10-25 17:11:06,627 - root - INFO - ############################### START ###############################
2019-10-25 17:11:16,451 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.822699308395386 seconds
2019-10-25 17:11:16,721 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2702789306640625 seconds
2019-10-25 17:11:17,343 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6208469867706299 seconds
2019-10-25 17:11:17,408 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06482577323913574 seconds
2019-10-25 17:11:17,458 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.047872304916381836 seconds
2019-10-25 17:11:17,498 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.038895368576049805 seconds
2019-10-25 17:11:22,982 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 3.4815616607666016 seconds
2019-10-25 17:11:26,859 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 3.856693744659424 seconds
2019-10-25 17:11:27,167 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河北分公司')]>, Spend 0.3061811923980713 seconds
2019-10-25 17:11:27,508 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.340090274810791 seconds
2019-10-25 17:11:27,794 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.28523707389831543 seconds
2019-10-25 17:11:28,051 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.25492286682128906 seconds
2019-10-25 17:11:28,808 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: wzs_0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7569780349731445 seconds
2019-10-25 17:11:31,132 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.32213306427001953 seconds
2019-10-25 17:11:31,372 - root - INFO - SUCCESS Clicked element: <xpath -> //div[@id='addUserModal']/div[@class='modal-footer']/button[@class='btn btn-warning']>, Spend 0.23932647705078125 seconds
2019-10-25 17:11:31,380 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 0.006982088088989258 seconds
2019-10-25 17:11:32,125 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wzs_0001,and sleep 0.5 seconds,input ENTER key, Spend 0.7450089454650879 seconds
2019-10-25 17:11:34,201 - root - INFO - SUCCESS Get element text element: <css->.ng-scope:nth-child(4) > .wordBreak>, Spend 0.07567954063415527 seconds
2019-10-25 17:11:35,737 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.5348970890045166 seconds
2019-10-25 17:11:35,738 - root - INFO - ############################### End ###############################
2019-10-25 17:27:21,457 - root - INFO - ############################### START ###############################
2019-10-25 17:27:26,491 - root - INFO - ############################### START ###############################
2019-10-25 17:27:35,849 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.35598349571228 seconds
2019-10-25 17:27:36,154 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3041872978210449 seconds
2019-10-25 17:27:36,807 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6392595767974854 seconds
2019-10-25 17:27:36,888 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.08178043365478516 seconds
2019-10-25 17:27:36,937 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04787302017211914 seconds
2019-10-25 17:27:36,979 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.039893150329589844 seconds
2019-10-25 17:27:39,707 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7259817123413086 seconds
2019-10-25 17:27:41,318 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.6106948852539062 seconds
2019-10-25 17:27:41,437 - root - INFO - SUCCESS Get element text element: <id->card>, Spend 0.1186838150024414 seconds
2019-10-25 17:27:42,654 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2147777080535889 seconds
2019-10-25 17:27:42,654 - root - INFO - ############################### End ###############################
2019-10-25 17:28:34,978 - root - INFO - ############################### START ###############################
2019-10-25 17:28:43,840 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.860275745391846 seconds
2019-10-25 17:28:44,120 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2782602310180664 seconds
2019-10-25 17:28:44,905 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7692210674285889 seconds
2019-10-25 17:28:44,979 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07280182838439941 seconds
2019-10-25 17:28:45,037 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05684828758239746 seconds
2019-10-25 17:28:45,079 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188823699951172 seconds
2019-10-25 17:28:47,779 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6980886459350586 seconds
2019-10-25 17:28:49,281 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.5019841194152832 seconds
2019-10-25 17:28:49,412 - root - INFO - SUCCESS Get element text element: <id->card>, Spend 0.12865543365478516 seconds
2019-10-25 17:28:50,895 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4830868244171143 seconds
2019-10-25 17:28:50,896 - root - INFO - ############################### End ###############################
2019-10-25 17:29:51,334 - root - INFO - ############################### START ###############################
2019-10-25 17:30:00,146 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.81144404411316 seconds
2019-10-25 17:30:00,455 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30817461013793945 seconds
2019-10-25 17:30:01,068 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6013932228088379 seconds
2019-10-25 17:30:01,136 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.0667877197265625 seconds
2019-10-25 17:30:01,184 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0468747615814209 seconds
2019-10-25 17:30:01,226 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188799858093262 seconds
2019-10-25 17:30:03,867 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6392912864685059 seconds
2019-10-25 17:30:05,356 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.4870283603668213 seconds
2019-10-25 17:30:05,469 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.11269760131835938 seconds
2019-10-25 17:30:05,781 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_tenant_10234, Spend 0.30916571617126465 seconds
2019-10-25 17:30:05,858 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.07779264450073242 seconds
2019-10-25 17:30:05,896 - root - INFO - FAIL Unable to clear and type element: <name->phoneNo> content: 13021212121.0, Spend 0.035904645919799805 seconds
2019-10-25 17:30:07,199 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3025171756744385 seconds
2019-10-25 17:30:07,199 - root - INFO - ############################### End ###############################
2019-10-25 17:32:07,473 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.78551959991455 seconds
2019-10-25 17:32:07,736 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2623000144958496 seconds
2019-10-25 17:32:08,341 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6043839454650879 seconds
2019-10-25 17:32:08,414 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07081151008605957 seconds
2019-10-25 17:32:08,464 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04886937141418457 seconds
2019-10-25 17:32:08,504 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.039897918701171875 seconds
2019-10-25 17:32:11,212 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7070341110229492 seconds
2019-10-25 17:32:12,682 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.4690723419189453 seconds
2019-10-25 17:32:12,809 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.12566423416137695 seconds
2019-10-25 17:32:13,109 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_auto02, Spend 0.3001983165740967 seconds
2019-10-25 17:32:13,191 - root - INFO - SUCCESS Clear and type element: <name->contact> content: 吴祖顺, Spend 0.07978606224060059 seconds
2019-10-25 17:32:13,284 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 13071089287, Spend 0.09175491333007812 seconds
2019-10-25 17:32:14,512 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.22831153869628906 seconds
2019-10-25 17:33:28,181 - root - INFO - ############################### START ###############################
2019-10-25 17:33:37,477 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.296145677566528 seconds
2019-10-25 17:33:37,753 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27526283264160156 seconds
2019-10-25 17:33:38,380 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6133637428283691 seconds
2019-10-25 17:33:38,475 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.09474658966064453 seconds
2019-10-25 17:33:38,525 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05086374282836914 seconds
2019-10-25 17:33:38,567 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.041889190673828125 seconds
2019-10-25 17:33:41,311 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7420084476470947 seconds
2019-10-25 17:33:42,773 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.4610939025878906 seconds
2019-10-25 17:33:42,884 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.11070370674133301 seconds
2019-10-25 17:33:43,211 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_tenant_10234, Spend 0.3261284828186035 seconds
2019-10-25 17:33:43,291 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.07878923416137695 seconds
2019-10-25 17:33:43,320 - root - INFO - FAIL Unable to clear and type element: <name->phoneNo> content: 15138961705.0, Spend 0.027925968170166016 seconds
2019-10-25 17:33:44,605 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.284621000289917 seconds
2019-10-25 17:33:44,606 - root - INFO - ############################### End ###############################
2019-10-25 17:34:14,553 - root - INFO - ############################### START ###############################
2019-10-25 17:34:23,910 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.35598874092102 seconds
2019-10-25 17:34:24,188 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2767515182495117 seconds
2019-10-25 17:34:24,819 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6193108558654785 seconds
2019-10-25 17:34:24,892 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.07180070877075195 seconds
2019-10-25 17:34:24,939 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.046875715255737305 seconds
2019-10-25 17:34:24,980 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0388948917388916 seconds
2019-10-25 17:34:27,644 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6630418300628662 seconds
2019-10-25 17:34:29,150 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.505976676940918 seconds
2019-10-25 17:34:29,260 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.11070108413696289 seconds
2019-10-25 17:34:29,570 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_tenant_10234, Spend 0.31017112731933594 seconds
2019-10-25 17:34:29,649 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.07679367065429688 seconds
2019-10-25 17:34:29,683 - root - INFO - FAIL Unable to clear and type element: <name->phoneNo> content: 15138961705.0, Spend 0.03390812873840332 seconds
2019-10-25 17:34:29,684 - root - INFO - ############################### End ###############################
2019-10-25 17:36:27,813 - root - INFO - ############################### START ###############################
2019-10-25 17:36:37,629 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.814761877059937 seconds
2019-10-25 17:36:37,920 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2902228832244873 seconds
2019-10-25 17:36:37,932 - root - INFO - ############################### End ###############################
2019-10-25 17:37:39,149 - root - INFO - ############################### START ###############################
2019-10-25 17:37:48,494 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.34402060508728 seconds
2019-10-25 17:37:48,773 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27750229835510254 seconds
2019-10-25 17:37:49,449 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6502184867858887 seconds
2019-10-25 17:37:49,525 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.0747988224029541 seconds
2019-10-25 17:37:49,569 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0438838005065918 seconds
2019-10-25 17:37:49,614 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04288053512573242 seconds
2019-10-25 17:37:52,297 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6820130348205566 seconds
2019-10-25 17:37:53,873 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.5757873058319092 seconds
2019-10-25 17:37:53,976 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.10073065757751465 seconds
2019-10-25 17:37:54,282 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_tenant_10234, Spend 0.3051886558532715 seconds
2019-10-25 17:37:54,358 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.07579684257507324 seconds
2019-10-25 17:37:54,386 - root - INFO - FAIL Unable to clear and type element: <name->phoneNo> content: 15138961705.0, Spend 0.025929927825927734 seconds
2019-10-25 17:37:54,387 - root - INFO - ############################### End ###############################
2019-10-25 17:48:10,609 - root - INFO - ############################### START ###############################
2019-10-25 17:48:19,927 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.317063093185425 seconds
2019-10-25 17:48:20,237 - root - INFO - SUCCESS Set browser window maximized, Spend 0.31051015853881836 seconds
2019-10-25 17:48:20,930 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6921966075897217 seconds
2019-10-25 17:48:20,994 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06283187866210938 seconds
2019-10-25 17:48:21,045 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.05086398124694824 seconds
2019-10-25 17:48:21,094 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.046877384185791016 seconds
2019-10-25 17:48:24,021 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9264471530914307 seconds
2019-10-25 17:48:24,972 - root - INFO - FAIL Unable to load http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 0.9305121898651123 seconds
2019-10-25 17:48:24,974 - root - INFO - ############################### End ###############################
2019-10-25 17:48:33,384 - root - INFO - ############################### START ###############################
2019-10-25 17:48:42,748 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.36193060874939 seconds
2019-10-25 17:48:43,030 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2785522937774658 seconds
2019-10-25 17:48:43,661 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5917022228240967 seconds
2019-10-25 17:48:43,847 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.18451571464538574 seconds
2019-10-25 17:48:43,891 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.043881893157958984 seconds
2019-10-25 17:48:43,962 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.06981348991394043 seconds
2019-10-25 17:48:46,611 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.648223876953125 seconds
2019-10-25 17:48:48,183 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.5698025226593018 seconds
2019-10-25 17:48:48,285 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.10073089599609375 seconds
2019-10-25 17:48:48,602 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_tenant_10234, Spend 0.31615567207336426 seconds
2019-10-25 17:48:48,685 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.08078527450561523 seconds
2019-10-25 17:48:48,845 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 15138961701, Spend 0.16057062149047852 seconds
2019-10-25 17:48:50,096 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.24936509132385254 seconds
2019-10-25 17:48:50,105 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.008977174758911133 seconds
2019-10-25 17:48:50,252 - root - INFO - SUCCESS Get element text element: <id->card>, Spend 0.14557623863220215 seconds
2019-10-25 17:48:50,309 - root - INFO - ############################### End ###############################
2019-10-25 17:55:32,584 - root - INFO - ############################### START ###############################
2019-10-25 17:55:42,408 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.82174015045166 seconds
2019-10-25 17:55:42,689 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28151607513427734 seconds
2019-10-25 17:55:43,385 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6816952228546143 seconds
2019-10-25 17:55:43,477 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.09275317192077637 seconds
2019-10-25 17:55:43,522 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04388308525085449 seconds
2019-10-25 17:55:43,566 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04288482666015625 seconds
2019-10-25 17:55:46,253 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6850051879882812 seconds
2019-10-25 17:55:47,981 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.7283787727355957 seconds
2019-10-25 17:55:48,139 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.15658020973205566 seconds
2019-10-25 17:55:48,445 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_tenant_10235, Spend 0.30518484115600586 seconds
2019-10-25 17:55:48,507 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.06083846092224121 seconds
2019-10-25 17:55:48,590 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 15138961701, Spend 0.0827791690826416 seconds
2019-10-25 17:55:49,840 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.2483365535736084 seconds
2019-10-25 17:55:49,853 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.011966705322265625 seconds
2019-10-25 17:55:54,978 - root - INFO - FAIL Unable to clear and type element: <css->.ng-touched> content: wuzs_tenant_10235, Spend 5.122472286224365 seconds
2019-10-25 17:55:54,979 - root - INFO - ############################### End ###############################
2019-10-25 17:57:56,926 - root - INFO - ############################### START ###############################
2019-10-25 17:58:06,701 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.772872686386108 seconds
2019-10-25 17:58:07,004 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30158233642578125 seconds
2019-10-25 17:58:07,648 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6315109729766846 seconds
2019-10-25 17:58:07,879 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.23138022422790527 seconds
2019-10-25 17:58:07,929 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.048836469650268555 seconds
2019-10-25 17:58:07,971 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188704490661621 seconds
2019-10-25 17:58:10,703 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7288796901702881 seconds
2019-10-25 17:58:12,369 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.664823293685913 seconds
2019-10-25 17:58:12,496 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.12566328048706055 seconds
2019-10-25 17:58:12,789 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_tenant_10236, Spend 0.29250359535217285 seconds
2019-10-25 17:58:12,868 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.07879137992858887 seconds
2019-10-25 17:58:12,960 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 15138961701, Spend 0.08976006507873535 seconds
2019-10-25 17:58:14,219 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.2572898864746094 seconds
2019-10-25 17:58:14,227 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.007943153381347656 seconds
2019-10-25 17:58:14,937 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.7081067562103271 seconds
2019-10-25 17:58:15,040 - root - INFO - SUCCESS Get element text element: <id->card>, Spend 0.10172748565673828 seconds
2019-10-25 17:58:15,041 - root - INFO - ############################### End ###############################
2019-10-25 18:24:44,595 - root - INFO - ############################### START ###############################
2019-10-25 18:24:53,887 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.291128396987915 seconds
2019-10-25 18:24:54,155 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2662839889526367 seconds
2019-10-25 18:24:54,778 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6093711853027344 seconds
2019-10-25 18:24:54,869 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.08975791931152344 seconds
2019-10-25 18:24:54,919 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04986715316772461 seconds
2019-10-25 18:24:54,963 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188704490661621 seconds
2019-10-25 18:24:57,637 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6721484661102295 seconds
2019-10-25 18:24:59,152 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.514948844909668 seconds
2019-10-25 18:24:59,312 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.15957331657409668 seconds
2019-10-25 18:24:59,746 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.4328436851501465 seconds
2019-10-25 18:25:02,416 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6672189235687256 seconds
2019-10-25 18:25:05,706 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.28904271125793457 seconds
2019-10-25 18:25:05,939 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-footer']/button[@class='btn btn-flat btn-primary']>, Spend 0.23237824440002441 seconds
2019-10-25 18:25:06,101 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wuzs_auth_user_01, Spend 0.16057109832763672 seconds
2019-10-25 18:25:06,211 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzushun, Spend 0.10870981216430664 seconds
2019-10-25 18:25:06,295 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.08477425575256348 seconds
2019-10-25 18:25:06,376 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.07878851890563965 seconds
2019-10-25 18:25:06,483 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wzs@163.com, Spend 0.10571789741516113 seconds
2019-10-25 18:25:06,737 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.25332164764404297 seconds
2019-10-25 18:25:06,746 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 0.008976221084594727 seconds
2019-10-25 18:25:11,882 - root - INFO - FAIL Unable element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 5.133434057235718 seconds
2019-10-25 18:25:11,884 - root - INFO - ############################### End ###############################
2019-10-25 18:28:47,113 - root - INFO - ############################### START ###############################
2019-10-25 18:28:56,478 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.36396598815918 seconds
2019-10-25 18:28:56,754 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27530670166015625 seconds
2019-10-25 18:28:57,414 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6452419757843018 seconds
2019-10-25 18:28:57,595 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.18151426315307617 seconds
2019-10-25 18:28:57,648 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05086255073547363 seconds
2019-10-25 18:28:57,686 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690147399902344 seconds
2019-10-25 18:29:00,336 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.647261381149292 seconds
2019-10-25 18:29:01,906 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.5688073635101318 seconds
2019-10-25 18:29:02,066 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.15857481956481934 seconds
2019-10-25 18:29:02,506 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.4388241767883301 seconds
2019-10-25 18:29:05,145 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6382899284362793 seconds
2019-10-25 18:29:08,415 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.2671358585357666 seconds
2019-10-25 18:29:08,651 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-footer']/button[@class='btn btn-flat btn-primary']>, Spend 0.2343893051147461 seconds
2019-10-25 18:29:08,813 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wuzs_auth_user_01, Spend 0.16051173210144043 seconds
2019-10-25 18:29:08,930 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzushun, Spend 0.11569094657897949 seconds
2019-10-25 18:29:09,014 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.08477330207824707 seconds
2019-10-25 18:29:09,107 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.09275317192077637 seconds
2019-10-25 18:29:09,217 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wzs@163.com, Spend 0.10870838165283203 seconds
2019-10-25 18:29:09,359 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.1406247615814209 seconds
2019-10-25 18:29:09,378 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 0.018949031829833984 seconds
2019-10-25 18:29:10,064 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6851704120635986 seconds
2019-10-25 18:29:15,142 - root - INFO - FAIL Unable to get element text element: <xpath->//div[@class='table-toolbar']/table-component/div/table/tbody>, Spend 5.075544357299805 seconds
2019-10-25 18:29:15,144 - root - INFO - ############################### End ###############################
2019-10-25 18:30:32,919 - root - INFO - ############################### START ###############################
2019-10-25 18:30:42,246 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.324867486953735 seconds
2019-10-25 18:30:42,554 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3083310127258301 seconds
2019-10-25 18:30:43,158 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5913867950439453 seconds
2019-10-25 18:30:43,229 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.07081198692321777 seconds
2019-10-25 18:30:43,267 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.035904884338378906 seconds
2019-10-25 18:30:43,297 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.02888965606689453 seconds
2019-10-25 18:30:46,008 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7100815773010254 seconds
2019-10-25 18:30:47,541 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.532902479171753 seconds
2019-10-25 18:30:47,707 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.1655561923980713 seconds
2019-10-25 18:30:48,139 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.43184447288513184 seconds
2019-10-25 18:30:50,877 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_tenant_10237,and sleep 0.5 seconds,input ENTER key, Spend 0.7350349426269531 seconds
2019-10-25 18:30:58,926 - root - INFO - FAIL Unable to click element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 5.047553062438965 seconds
2019-10-25 18:30:58,928 - root - INFO - ############################### End ###############################
2019-10-25 18:31:27,612 - root - INFO - ############################### START ###############################
2019-10-25 18:31:36,929 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.315064430236816 seconds
2019-10-25 18:31:37,205 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2765793800354004 seconds
2019-10-25 18:31:37,845 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6243312358856201 seconds
2019-10-25 18:31:38,064 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.21841907501220703 seconds
2019-10-25 18:31:38,118 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05285930633544922 seconds
2019-10-25 18:31:38,167 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.047872066497802734 seconds
2019-10-25 18:31:40,859 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6910123825073242 seconds
2019-10-25 18:31:42,506 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.6465983390808105 seconds
2019-10-25 18:31:42,686 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.17752599716186523 seconds
2019-10-25 18:31:43,142 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.45677661895751953 seconds
2019-10-25 18:31:45,786 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6432478427886963 seconds
2019-10-25 18:31:49,118 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.32999229431152344 seconds
2019-10-25 18:31:49,352 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-footer']/button[@class='btn btn-flat btn-primary']>, Spend 0.23241138458251953 seconds
2019-10-25 18:31:49,509 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wuzs_auth_user_02, Spend 0.15654945373535156 seconds
2019-10-25 18:31:49,624 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzushun, Spend 0.11469244956970215 seconds
2019-10-25 18:31:49,707 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.08178210258483887 seconds
2019-10-25 18:31:49,793 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.08577156066894531 seconds
2019-10-25 18:31:49,901 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wzs@163.com, Spend 0.10671472549438477 seconds
2019-10-25 18:31:50,108 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.2064495086669922 seconds
2019-10-25 18:31:50,133 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 0.023934125900268555 seconds
2019-10-25 18:31:50,802 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_auth_user_02,and sleep 0.5 seconds,input ENTER key, Spend 0.6682398319244385 seconds
2019-10-25 18:31:55,844 - root - INFO - FAIL Unable to get element text element: <xpath->//div[@class='table-toolbar']/table-component/div/table/tbody>, Spend 5.040547847747803 seconds
2019-10-25 18:31:55,846 - root - INFO - ############################### End ###############################
2019-10-25 18:33:54,301 - root - INFO - ############################### START ###############################
2019-10-25 18:34:04,822 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.517882823944092 seconds
2019-10-25 18:34:05,089 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2655925750732422 seconds
2019-10-25 18:34:05,858 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7080550193786621 seconds
2019-10-25 18:34:05,940 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.08078336715698242 seconds
2019-10-25 18:34:05,982 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04089045524597168 seconds
2019-10-25 18:34:06,032 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04787302017211914 seconds
2019-10-25 18:34:08,796 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7629528045654297 seconds
2019-10-25 18:34:10,461 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.6645476818084717 seconds
2019-10-25 18:34:11,107 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_auth_user_02,and sleep 0.5 seconds,input ENTER key, Spend 0.6452767848968506 seconds
2019-10-25 18:34:11,283 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.17453360557556152 seconds
2019-10-25 18:34:11,283 - root - INFO - ############################### End ###############################
2019-10-25 18:50:41,758 - root - INFO - ############################### START ###############################
2019-10-25 18:50:50,560 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.800854206085205 seconds
2019-10-25 18:50:50,822 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26034975051879883 seconds
2019-10-25 18:50:51,524 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6901209354400635 seconds
2019-10-25 18:50:51,602 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.07679462432861328 seconds
2019-10-25 18:50:51,651 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04886960983276367 seconds
2019-10-25 18:50:51,693 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.041889190673828125 seconds
2019-10-25 18:50:54,344 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.649040699005127 seconds
2019-10-25 18:50:54,345 - root - INFO - ############################### End ###############################
2019-10-25 18:51:33,949 - root - INFO - ############################### START ###############################
2019-10-25 18:51:43,268 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.317455530166626 seconds
2019-10-25 18:51:43,594 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3239173889160156 seconds
2019-10-25 18:51:44,284 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6545164585113525 seconds
2019-10-25 18:51:44,450 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.16655421257019043 seconds
2019-10-25 18:51:44,498 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04587841033935547 seconds
2019-10-25 18:51:44,540 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089188575744629 seconds
2019-10-25 18:51:47,193 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6520745754241943 seconds
2019-10-25 18:51:48,897 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.703446388244629 seconds
2019-10-25 18:51:49,042 - root - INFO - SUCCESS Clicked element: <xpath->//div[5]/button/i>, Spend 0.14261865615844727 seconds
2019-10-25 18:51:49,438 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'请选择运营部门')]>, Spend 0.39497852325439453 seconds
2019-10-25 18:51:50,092 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6532561779022217 seconds
2019-10-25 18:51:50,378 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/div/div/button[2]/i>, Spend 0.28523898124694824 seconds
2019-10-25 18:51:50,613 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_tenant_10236')]>, Spend 0.2323770523071289 seconds
2019-10-25 18:51:50,749 - root - INFO - SUCCESS Clear and type element: <name->projectName> content: wuzs_project_10236, Spend 0.13563776016235352 seconds
2019-10-25 18:51:50,809 - root - INFO - SUCCESS Clear and type element: <name->projectDescription> content: ui自动化, Spend 0.05984067916870117 seconds
2019-10-25 18:51:50,952 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.1406235694885254 seconds
2019-10-25 18:51:50,975 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 0.02293872833251953 seconds
2019-10-25 18:51:50,976 - root - INFO - FAIL Unable element <xpath=//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_project_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.0 seconds
2019-10-25 18:51:50,976 - root - INFO - ############################### End ###############################
2019-10-25 18:52:29,262 - root - INFO - ############################### START ###############################
2019-10-25 18:52:38,556 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.292157888412476 seconds
2019-10-25 18:52:38,825 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26677870750427246 seconds
2019-10-25 18:52:39,438 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5884716510772705 seconds
2019-10-25 18:52:39,626 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.18749737739562988 seconds
2019-10-25 18:52:39,677 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0498652458190918 seconds
2019-10-25 18:52:39,716 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789854049682617 seconds
2019-10-25 18:52:42,352 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6352696418762207 seconds
2019-10-25 18:52:43,997 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.643604040145874 seconds
2019-10-25 18:52:44,680 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_project_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6821749210357666 seconds
2019-10-25 18:52:44,852 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.17253828048706055 seconds
2019-10-25 18:52:44,853 - root - INFO - ############################### End ###############################
2019-10-25 18:53:34,044 - root - INFO - ############################### START ###############################
2019-10-25 18:53:43,322 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.276172876358032 seconds
2019-10-25 18:53:43,590 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2652885913848877 seconds
2019-10-25 18:53:44,348 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7380297183990479 seconds
2019-10-25 18:53:44,434 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.08477449417114258 seconds
2019-10-25 18:53:44,479 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04487967491149902 seconds
2019-10-25 18:53:44,523 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188871383666992 seconds
2019-10-25 18:53:47,259 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7338438034057617 seconds
2019-10-25 18:53:49,042 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.7832353115081787 seconds
2019-10-25 18:53:49,754 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_project_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.7103152275085449 seconds
2019-10-25 18:53:49,874 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.11970973014831543 seconds
2019-10-25 18:53:49,875 - root - INFO - ############################### End ###############################
2019-10-25 19:09:15,852 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.829362392425537 seconds
2019-10-25 19:09:16,143 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2902233600616455 seconds
2019-10-25 19:09:16,722 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.5785009860992432 seconds
2019-10-25 19:09:16,793 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs001, Spend 0.06881070137023926 seconds
2019-10-25 19:09:16,847 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05186057090759277 seconds
2019-10-25 19:09:16,885 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690147399902344 seconds
2019-10-25 19:09:19,623 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7338047027587891 seconds
2019-10-25 19:09:21,257 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.6335866451263428 seconds
2019-10-25 19:09:21,258 - root - INFO - 创建资源节点param河南,auto_test001,业务云,OpenStack L,VMware,auto_test
2019-10-25 19:09:26,354 - root - INFO - FAIL Unable to click element: <xpath->//button/i>, Spend 5.09438157081604 seconds
2019-10-25 19:09:52,282 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.847673892974854 seconds
2019-10-25 19:09:52,560 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2753574848175049 seconds
2019-10-25 19:09:53,223 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.661186933517456 seconds
2019-10-25 19:09:53,310 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.08577179908752441 seconds
2019-10-25 19:09:53,353 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04089045524597168 seconds
2019-10-25 19:09:53,394 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.041887521743774414 seconds
2019-10-25 19:09:56,095 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6979498863220215 seconds
2019-10-25 19:09:57,665 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.5698039531707764 seconds
2019-10-25 19:09:57,666 - root - INFO - 创建资源节点param河南,auto_test001,业务云,OpenStack L,VMware,auto_test
2019-10-25 19:09:57,965 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.2982051372528076 seconds
2019-10-25 19:10:00,260 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.2941622734069824 seconds
2019-10-25 19:10:00,833 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[4]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5704529285430908 seconds
2019-10-25 19:10:00,963 - root - INFO - SUCCESS Clear and type element: <name -> regName_> content: auto_test001, Spend 0.1296529769897461 seconds
2019-10-25 19:10:01,208 - root - INFO - SUCCESS Clicked element: <xpath -> //div[3]/div/div/div/span/span[2]/span>, Spend 0.24335193634033203 seconds
2019-10-25 19:10:01,795 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[5]> type content: OpenStack L,and sleep 0.5 seconds,input ENTER key, Spend 0.5873982906341553 seconds
2019-10-25 19:10:02,050 - root - INFO - SUCCESS Clicked element: <xpath->//div[4]/div/div/div/span/span[2]/span>, Spend 0.25531697273254395 seconds
2019-10-25 19:10:02,598 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[6]> type content: 业务云,and sleep 0.5 seconds,input ENTER key, Spend 0.5475361347198486 seconds
2019-10-25 19:10:02,861 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div[5]/div/div/div/span/span[2]>, Spend 0.262296199798584 seconds
2019-10-25 19:10:03,436 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[7]> type content: VMware,and sleep 0.5 seconds,input ENTER key, Spend 0.5734684467315674 seconds
2019-10-25 19:10:03,544 - root - INFO - SUCCESS Clear and type element: <xpath ->//textarea[@name='regDesc'] > content: auto_test, Spend 0.10671615600585938 seconds
2019-10-25 19:10:03,774 - root - INFO - SUCCESS Clicked element: <css->#regAddAndEdit .btn-primary>, Spend 0.22838616371154785 seconds

View File

@ -1,400 +0,0 @@
2019-10-28 09:35:21,471 - root - INFO - SUCCESS Start a new browser: firefox, Spend 11.889815092086792 seconds
2019-10-28 09:35:21,751 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2802865505218506 seconds
2019-10-28 09:35:22,515 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.763923168182373 seconds
2019-10-28 09:35:22,596 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07878828048706055 seconds
2019-10-28 09:35:22,644 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04787302017211914 seconds
2019-10-28 09:35:22,688 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188823699951172 seconds
2019-10-28 09:35:25,484 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.793867826461792 seconds
2019-10-28 09:35:27,215 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.7304012775421143 seconds
2019-10-28 09:35:27,215 - root - INFO - 添加endpint
2019-10-28 09:35:27,476 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2593381404876709 seconds
2019-10-28 09:35:32,546 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'2222222')]>, Spend 5.06746506690979 seconds
2019-10-28 09:36:07,500 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.754140138626099 seconds
2019-10-28 09:36:07,768 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2675321102142334 seconds
2019-10-28 09:36:08,439 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6702144145965576 seconds
2019-10-28 09:36:08,507 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.06781744956970215 seconds
2019-10-28 09:36:08,547 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.038895606994628906 seconds
2019-10-28 09:36:08,581 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03390979766845703 seconds
2019-10-28 09:36:11,344 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7618043422698975 seconds
2019-10-28 09:36:13,385 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 2.0389344692230225 seconds
2019-10-28 09:36:13,386 - root - INFO - 添加endpint
2019-10-28 09:36:13,631 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.24501585960388184 seconds
2019-10-28 09:36:18,695 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'1111111')]>, Spend 5.062456130981445 seconds
2019-10-28 09:37:06,316 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.299380779266357 seconds
2019-10-28 09:37:06,584 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26625490188598633 seconds
2019-10-28 09:37:07,242 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6582379341125488 seconds
2019-10-28 09:37:07,316 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07280302047729492 seconds
2019-10-28 09:37:07,369 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.050861358642578125 seconds
2019-10-28 09:37:07,415 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.044879913330078125 seconds
2019-10-28 09:37:10,126 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7100677490234375 seconds
2019-10-28 09:37:11,794 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.6685361862182617 seconds
2019-10-28 09:37:11,795 - root - INFO - 添加endpint
2019-10-28 09:37:12,056 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2603037357330322 seconds
2019-10-28 09:37:12,317 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'11111')]>, Spend 0.2597076892852783 seconds
2019-10-28 09:37:12,580 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'11111')]/parent::li//child::i>, Spend 0.26030540466308594 seconds
2019-10-28 09:37:12,624 - root - INFO - FAIL Unable to click element: <xpath->(//a[contains(text(),'vmware-api')])>, Spend 0.04193472862243652 seconds
2019-10-28 09:38:12,393 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.324280023574829 seconds
2019-10-28 09:38:12,669 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2753632068634033 seconds
2019-10-28 09:38:13,340 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6692488193511963 seconds
2019-10-28 09:38:13,521 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.18051886558532715 seconds
2019-10-28 09:38:13,566 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04487466812133789 seconds
2019-10-28 09:38:13,633 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.06480908393859863 seconds
2019-10-28 09:38:16,313 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6790027618408203 seconds
2019-10-28 09:38:57,081 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.829808712005615 seconds
2019-10-28 09:38:57,369 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28640294075012207 seconds
2019-10-28 09:38:58,060 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6901180744171143 seconds
2019-10-28 09:38:58,138 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07679438591003418 seconds
2019-10-28 09:38:58,186 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04687309265136719 seconds
2019-10-28 09:38:58,232 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.045876502990722656 seconds
2019-10-28 09:39:00,978 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7448363304138184 seconds
2019-10-28 09:39:02,689 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.71044921875 seconds
2019-10-28 09:39:02,689 - root - INFO - 创建VMware服务节点
2019-10-28 09:39:02,972 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.28079891204833984 seconds
2019-10-28 09:39:03,313 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'11111')]>, Spend 0.33910107612609863 seconds
2019-10-28 09:39:03,630 - root - INFO - SUCCESS Clicked element: <xpath -> //button[2]/i>, Spend 0.31515002250671387 seconds
2019-10-28 09:39:05,764 - root - INFO - SUCCESS Clear and type element: <name->serviceName> content: vmware-api, Spend 0.13164758682250977 seconds
2019-10-28 09:39:06,013 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/div/span/span[2]/span>, Spend 0.24737071990966797 seconds
2019-10-28 09:39:06,611 - root - INFO - SUCCESS Element <xpath->//div/div[2]/div/div/input> type content: vmware,and sleep 0.5 seconds,input ENTER key, Spend 0.5973737239837646 seconds
2019-10-28 09:39:11,682 - root - INFO - FAIL Unable to clear and type element: <name->authenInfo> content: administrator@vsphere.local, Spend 5.06879734992981 seconds
2019-10-28 09:41:09,053 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.274794340133667 seconds
2019-10-28 09:41:09,337 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2815864086151123 seconds
2019-10-28 09:41:09,970 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6327018737792969 seconds
2019-10-28 09:41:10,158 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.18650031089782715 seconds
2019-10-28 09:41:10,208 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.049866676330566406 seconds
2019-10-28 09:41:10,249 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989410400390625 seconds
2019-10-28 09:41:12,940 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6889853477478027 seconds
2019-10-28 09:41:15,069 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 2.1273109912872314 seconds
2019-10-28 09:41:15,070 - root - INFO - 创建VMware服务节点
2019-10-28 09:41:15,336 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2652928829193115 seconds
2019-10-28 09:41:15,611 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.27426671981811523 seconds
2019-10-28 09:41:15,913 - root - INFO - SUCCESS Clicked element: <xpath -> //button[2]/i>, Spend 0.2991631031036377 seconds
2019-10-28 09:41:18,089 - root - INFO - SUCCESS Clear and type element: <name->serviceName> content: vmware-api, Spend 0.1755237579345703 seconds
2019-10-28 09:41:18,349 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/div/span/span[2]/span>, Spend 0.25734567642211914 seconds
2019-10-28 09:41:18,939 - root - INFO - SUCCESS Element <xpath->//div/div[2]/div/div/input> type content: vmware,and sleep 0.5 seconds,input ENTER key, Spend 0.5874481201171875 seconds
2019-10-28 09:41:19,189 - root - INFO - SUCCESS Clear and type element: <name->authenInfo> content: administrator@vsphere.local, Spend 0.2493305206298828 seconds
2019-10-28 09:41:19,269 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='authenInfo'])[2]> content: P@ssw0rd, Spend 0.07978630065917969 seconds
2019-10-28 09:41:20,545 - root - INFO - SUCCESS Clicked element: <css->#serAddAndEdit .btn-primary>, Spend 0.27428770065307617 seconds
2019-10-28 09:41:48,911 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.821449279785156 seconds
2019-10-28 09:41:49,286 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3730034828186035 seconds
2019-10-28 09:41:49,937 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6502692699432373 seconds
2019-10-28 09:41:50,024 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.0857703685760498 seconds
2019-10-28 09:41:50,074 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04886913299560547 seconds
2019-10-28 09:41:50,117 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188799858093262 seconds
2019-10-28 09:41:52,851 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7319245338439941 seconds
2019-10-28 09:41:54,454 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.601715326309204 seconds
2019-10-28 09:41:54,456 - root - INFO - 添加endpint
2019-10-28 09:41:54,741 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.28527331352233887 seconds
2019-10-28 09:41:55,006 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.2642977237701416 seconds
2019-10-28 09:41:55,252 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.24436664581298828 seconds
2019-10-28 09:41:55,307 - root - INFO - FAIL Unable to click element: <xpath->(//a[contains(text(),'vmware-api')])>, Spend 0.05285811424255371 seconds
2019-10-28 09:44:20,758 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.404356241226196 seconds
2019-10-28 09:44:21,019 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2607455253601074 seconds
2019-10-28 09:44:21,649 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6294879913330078 seconds
2019-10-28 09:44:21,829 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.1795191764831543 seconds
2019-10-28 09:44:21,878 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04787325859069824 seconds
2019-10-28 09:44:21,919 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089164733886719 seconds
2019-10-28 09:44:24,674 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7528243064880371 seconds
2019-10-28 09:44:26,360 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.6854913234710693 seconds
2019-10-28 09:44:26,360 - root - INFO - 添加endpint
2019-10-28 09:44:26,628 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.26529622077941895 seconds
2019-10-28 09:44:27,901 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.2723100185394287 seconds
2019-10-28 09:44:28,207 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.3052361011505127 seconds
2019-10-28 09:44:29,270 - root - INFO - FAIL Unable to click element: <xpath->(//a[contains(text(),'vmware-api')])>, Spend 0.05971813201904297 seconds
2019-10-28 09:45:16,776 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.297988414764404 seconds
2019-10-28 09:45:17,052 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27419090270996094 seconds
2019-10-28 09:45:17,693 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6398358345031738 seconds
2019-10-28 09:45:17,859 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.16455912590026855 seconds
2019-10-28 09:45:17,902 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04188799858093262 seconds
2019-10-28 09:45:17,946 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04288339614868164 seconds
2019-10-28 09:45:20,709 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7619521617889404 seconds
2019-10-28 09:45:22,745 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 2.0355985164642334 seconds
2019-10-28 09:45:22,746 - root - INFO - 添加endpint
2019-10-28 09:45:23,044 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2962064743041992 seconds
2019-10-28 09:45:24,355 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.31116628646850586 seconds
2019-10-28 09:45:24,594 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.23836207389831543 seconds
2019-10-28 09:45:25,619 - root - INFO - FAIL Unable to click element: <xpath->(//a[contains(text(),'vmware-api')])>, Spend 0.021788358688354492 seconds
2019-10-28 09:46:09,668 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.329735279083252 seconds
2019-10-28 09:46:09,934 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26465463638305664 seconds
2019-10-28 09:46:10,632 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6970853805541992 seconds
2019-10-28 09:46:10,713 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.08078384399414062 seconds
2019-10-28 09:46:10,759 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.045877695083618164 seconds
2019-10-28 09:46:10,803 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04288649559020996 seconds
2019-10-28 09:46:13,539 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7329094409942627 seconds
2019-10-28 09:46:15,342 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.800694465637207 seconds
2019-10-28 09:46:15,343 - root - INFO - 添加endpint
2019-10-28 09:46:15,641 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2972443103790283 seconds
2019-10-28 09:46:16,994 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.34890198707580566 seconds
2019-10-28 09:46:17,296 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.30023956298828125 seconds
2019-10-28 09:46:18,345 - root - INFO - FAIL Unable to click element: <xpath->(//a[contains(text(),'vmware-api')])>, Spend 0.04678797721862793 seconds
2019-10-28 09:51:42,135 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.332934379577637 seconds
2019-10-28 09:51:42,402 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2652902603149414 seconds
2019-10-28 09:51:43,024 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.6201133728027344 seconds
2019-10-28 09:51:43,100 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.07480001449584961 seconds
2019-10-28 09:51:43,156 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05485391616821289 seconds
2019-10-28 09:51:43,195 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789663314819336 seconds
2019-10-28 09:51:45,912 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7159528732299805 seconds
2019-10-28 09:51:47,906 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.992668628692627 seconds
2019-10-28 09:51:47,907 - root - INFO - 添加endpint
2019-10-28 09:51:48,162 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2543182373046875 seconds
2019-10-28 09:51:49,478 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.31521010398864746 seconds
2019-10-28 09:51:49,756 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.2762129306793213 seconds
2019-10-28 09:51:51,091 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api_001')])>, Spend 0.3320803642272949 seconds
2019-10-28 09:51:52,400 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.3070080280303955 seconds
2019-10-28 09:51:52,575 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.136, Spend 0.1745302677154541 seconds
2019-10-28 09:51:52,829 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.2533233165740967 seconds
2019-10-28 10:31:37,689 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.815433263778687 seconds
2019-10-28 10:31:37,968 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2782552242279053 seconds
2019-10-28 10:31:38,690 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7200343608856201 seconds
2019-10-28 10:31:38,823 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.1326439380645752 seconds
2019-10-28 10:31:38,907 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.08178162574768066 seconds
2019-10-28 10:31:38,957 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04850625991821289 seconds
2019-10-28 10:31:41,711 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7529852390289307 seconds
2019-10-28 10:31:43,805 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 2.0929064750671387 seconds
2019-10-28 10:31:43,807 - root - INFO - 添加endpint
2019-10-28 10:31:44,105 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2972414493560791 seconds
2019-10-28 10:31:45,482 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.28618311882019043 seconds
2019-10-28 10:31:45,715 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.23335957527160645 seconds
2019-10-28 10:31:46,996 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api_001')])>, Spend 0.27803492546081543 seconds
2019-10-28 10:31:47,996 - root - INFO - FAIL Unable to get element text element: <//div[@class='row']/table[@id='accessPoint']/tbady>, Spend 0.0 seconds
2019-10-28 10:32:09,278 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.384666919708252 seconds
2019-10-28 10:32:09,551 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2723219394683838 seconds
2019-10-28 10:32:10,274 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7217147350311279 seconds
2019-10-28 10:32:10,492 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.21641969680786133 seconds
2019-10-28 10:32:10,551 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05893540382385254 seconds
2019-10-28 10:32:10,597 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04488039016723633 seconds
2019-10-28 10:32:13,369 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7698945999145508 seconds
2019-10-28 10:32:15,332 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.96229887008667 seconds
2019-10-28 10:32:15,333 - root - INFO - 添加endpint
2019-10-28 10:32:15,626 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.29324889183044434 seconds
2019-10-28 10:32:16,923 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.29515933990478516 seconds
2019-10-28 10:32:17,182 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.25736451148986816 seconds
2019-10-28 10:32:18,455 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api_001')])>, Spend 0.2712256908416748 seconds
2019-10-28 10:32:19,455 - root - INFO - FAIL Unable to get element text element: <xpth->//div[@class='row']/table[@id='accessPoint']/tbady>, Spend 0.0 seconds
2019-10-28 10:33:51,904 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.833676815032959 seconds
2019-10-28 10:33:52,183 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2782588005065918 seconds
2019-10-28 10:33:52,968 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7838807106018066 seconds
2019-10-28 10:33:53,081 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.11170244216918945 seconds
2019-10-28 10:33:53,141 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05884146690368652 seconds
2019-10-28 10:33:53,203 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0608365535736084 seconds
2019-10-28 10:33:56,002 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7977337837219238 seconds
2019-10-28 10:33:58,078 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 2.0751543045043945 seconds
2019-10-28 10:33:58,079 - root - INFO - 添加endpint
2019-10-28 10:33:58,373 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2927873134613037 seconds
2019-10-28 10:33:59,658 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.28302812576293945 seconds
2019-10-28 10:33:59,892 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.23337554931640625 seconds
2019-10-28 10:34:01,194 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api_001')])>, Spend 0.2991945743560791 seconds
2019-10-28 10:34:02,195 - root - INFO - FAIL Unable to get element text element: <xpth->//div[@class='row'][6]/table[@id='accessPoint']/tbady>, Spend 0.0 seconds
2019-10-28 10:34:21,611 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.865647077560425 seconds
2019-10-28 10:34:21,898 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28580260276794434 seconds
2019-10-28 10:34:22,724 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.8257901668548584 seconds
2019-10-28 10:34:22,824 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.09873652458190918 seconds
2019-10-28 10:34:22,887 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.06183600425720215 seconds
2019-10-28 10:34:22,936 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.047873735427856445 seconds
2019-10-28 10:34:25,706 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7689576148986816 seconds
2019-10-28 10:34:27,701 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.9950077533721924 seconds
2019-10-28 10:34:27,703 - root - INFO - 添加endpint
2019-10-28 10:34:27,989 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2847566604614258 seconds
2019-10-28 10:34:29,255 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.26429271697998047 seconds
2019-10-28 10:34:29,491 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.23541474342346191 seconds
2019-10-28 10:34:30,760 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api_001')])>, Spend 0.26709699630737305 seconds
2019-10-28 10:34:36,820 - root - INFO - FAIL Unable to get element text element: <xpath->//div[@class='row'][6]/table[@id='accessPoint']/tbady>, Spend 5.060077428817749 seconds
2019-10-28 10:54:24,216 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.347960233688354 seconds
2019-10-28 10:54:24,516 - root - INFO - SUCCESS Set browser window maximized, Spend 0.29773592948913574 seconds
2019-10-28 10:54:25,239 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7231056690216064 seconds
2019-10-28 10:54:25,306 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.0658574104309082 seconds
2019-10-28 10:54:25,348 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.040856361389160156 seconds
2019-10-28 10:54:25,379 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.028926372528076172 seconds
2019-10-28 10:54:28,143 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7629587650299072 seconds
2019-10-28 10:54:29,981 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.8371984958648682 seconds
2019-10-28 10:54:29,982 - root - INFO - 添加endpint
2019-10-28 10:54:30,242 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2596316337585449 seconds
2019-10-28 10:54:31,510 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.2661895751953125 seconds
2019-10-28 10:54:31,742 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.23143386840820312 seconds
2019-10-28 10:54:33,012 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api_001')])>, Spend 0.26812005043029785 seconds
2019-10-28 10:54:39,066 - root - INFO - FAIL Unable to get element text element: <xpath->//table[@id='accessPoint']/tbady>, Spend 5.050909519195557 seconds
2019-10-28 11:04:25,251 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.33702802658081 seconds
2019-10-28 11:04:25,532 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2782578468322754 seconds
2019-10-28 11:04:26,254 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7202215194702148 seconds
2019-10-28 11:04:26,330 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.0747990608215332 seconds
2019-10-28 11:04:26,381 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.049866676330566406 seconds
2019-10-28 11:04:26,422 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040891408920288086 seconds
2019-10-28 11:04:29,220 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7967193126678467 seconds
2019-10-28 11:04:30,964 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.7423408031463623 seconds
2019-10-28 11:04:30,965 - root - INFO - 添加endpint
2019-10-28 11:04:31,248 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.28025197982788086 seconds
2019-10-28 11:04:32,533 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.2842693328857422 seconds
2019-10-28 11:04:32,769 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.23534679412841797 seconds
2019-10-28 11:04:34,114 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api_001')])>, Spend 0.34207844734191895 seconds
2019-10-28 11:04:35,273 - root - INFO - SUCCESS Get element text element: <xpath->//table[@id='accessPoint']/tbody>, Spend 0.1574113368988037 seconds
2019-10-28 11:04:36,924 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.6495885848999023 seconds
2019-10-28 11:05:35,332 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.287797212600708 seconds
2019-10-28 11:05:35,628 - root - INFO - SUCCESS Set browser window maximized, Spend 0.295224666595459 seconds
2019-10-28 11:05:36,392 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7626097202301025 seconds
2019-10-28 11:05:36,455 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.06186866760253906 seconds
2019-10-28 11:05:36,499 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04388141632080078 seconds
2019-10-28 11:05:36,533 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0329132080078125 seconds
2019-10-28 11:05:39,247 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.712094783782959 seconds
2019-10-28 11:05:40,945 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.6964664459228516 seconds
2019-10-28 11:05:40,946 - root - INFO - 添加endpint
2019-10-28 11:05:41,222 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.27350401878356934 seconds
2019-10-28 11:05:42,477 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]>, Spend 0.254321813583374 seconds
2019-10-28 11:05:42,777 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'auto_test001')]/parent::li//child::i>, Spend 0.29920434951782227 seconds
2019-10-28 11:05:44,120 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api_001')])>, Spend 0.34000134468078613 seconds
2019-10-28 11:05:45,227 - root - INFO - SUCCESS Get element text element: <xpath->//table[@id='accessPoint']/tbody/tr[2]>, Spend 0.10567307472229004 seconds
2019-10-28 11:05:46,528 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3004889488220215 seconds
2019-10-28 21:17:27,089 - root - INFO - ############################### START ###############################
2019-10-28 21:17:30,573 - root - INFO - ############################### START ###############################
2019-10-28 21:17:40,925 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.350313901901245 seconds
2019-10-28 21:17:41,216 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2897517681121826 seconds
2019-10-28 21:17:42,549 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.9803807735443115 seconds
2019-10-28 21:17:42,666 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.11468863487243652 seconds
2019-10-28 21:17:42,724 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05784440040588379 seconds
2019-10-28 21:17:42,778 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05186176300048828 seconds
2019-10-28 21:17:45,618 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8376941680908203 seconds
2019-10-28 21:17:47,747 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.128272533416748 seconds
2019-10-28 21:17:48,140 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.3919551372528076 seconds
2019-10-28 21:17:49,316 - root - INFO - SUCCESS Clear and type element: <id->vdcName> content: wuzsvdc_001, Spend 0.17353463172912598 seconds
2019-10-28 21:17:49,557 - root - INFO - SUCCESS Clicked element: <css->.modal-footer:nth-child(3) > .btn-warning>, Spend 0.24135398864746094 seconds
2019-10-28 21:17:49,565 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 0.006982326507568359 seconds
2019-10-28 21:17:50,201 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6343545913696289 seconds
2019-10-28 21:17:50,202 - root - INFO - ############################### End ###############################
2019-10-28 21:21:23,278 - root - INFO - ############################### START ###############################
2019-10-28 21:21:33,904 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.451043844223022 seconds
2019-10-28 21:21:34,202 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2967414855957031 seconds
2019-10-28 21:21:35,119 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.8966052532196045 seconds
2019-10-28 21:21:35,244 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.12466669082641602 seconds
2019-10-28 21:21:35,315 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.06981277465820312 seconds
2019-10-28 21:21:35,371 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05484724044799805 seconds
2019-10-28 21:21:38,233 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8586664199829102 seconds
2019-10-28 21:21:41,429 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 3.194164991378784 seconds
2019-10-28 21:21:42,285 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.852733850479126 seconds
2019-10-28 21:21:42,573 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']>, Spend 0.28722691535949707 seconds
2019-10-28 21:21:42,574 - root - INFO - ############################### End ###############################
2019-10-28 21:22:32,339 - root - INFO - ############################### START ###############################
2019-10-28 21:22:42,209 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.867571830749512 seconds
2019-10-28 21:22:42,483 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2732815742492676 seconds
2019-10-28 21:22:43,281 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7769222259521484 seconds
2019-10-28 21:22:43,512 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.22938203811645508 seconds
2019-10-28 21:22:43,574 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.061833858489990234 seconds
2019-10-28 21:22:43,625 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.048865556716918945 seconds
2019-10-28 21:22:46,600 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9733967781066895 seconds
2019-10-28 21:22:49,364 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.7626121044158936 seconds
2019-10-28 21:22:50,183 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.8168156147003174 seconds
2019-10-28 21:22:50,485 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component>, Spend 0.30019450187683105 seconds
2019-10-28 21:22:50,486 - root - INFO - ############################### End ###############################
2019-10-28 21:25:53,212 - root - INFO - ############################### START ###############################
2019-10-28 21:26:03,051 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.837684392929077 seconds
2019-10-28 21:26:03,365 - root - INFO - SUCCESS Set browser window maximized, Spend 0.31089115142822266 seconds
2019-10-28 21:26:04,150 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7699463367462158 seconds
2019-10-28 21:26:04,274 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.12166929244995117 seconds
2019-10-28 21:26:04,329 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.053855180740356445 seconds
2019-10-28 21:26:04,383 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.053854942321777344 seconds
2019-10-28 21:26:07,227 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8417370319366455 seconds
2019-10-28 21:26:09,797 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.568129539489746 seconds
2019-10-28 21:26:10,578 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.7799136638641357 seconds
2019-10-28 21:26:10,699 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.11968016624450684 seconds
2019-10-28 21:26:10,699 - root - INFO - ############################### End ###############################
2019-10-28 21:50:28,388 - root - INFO - ############################### START ###############################
2019-10-28 21:50:38,236 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.846661567687988 seconds
2019-10-28 21:50:38,515 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2773449420928955 seconds
2019-10-28 21:50:39,336 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.801856517791748 seconds
2019-10-28 21:50:39,464 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.12765765190124512 seconds
2019-10-28 21:50:39,518 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05285811424255371 seconds
2019-10-28 21:50:39,571 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05086183547973633 seconds
2019-10-28 21:50:42,354 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7809083461761475 seconds
2019-10-28 21:50:42,355 - root - INFO - ############################### End ###############################
2019-10-28 21:53:25,649 - root - INFO - ############################### START ###############################
2019-10-28 21:53:36,006 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.357448816299438 seconds
2019-10-28 21:53:36,297 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2897500991821289 seconds
2019-10-28 21:53:37,199 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.869680643081665 seconds
2019-10-28 21:53:37,422 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.22240257263183594 seconds
2019-10-28 21:53:37,485 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.06183338165283203 seconds
2019-10-28 21:53:37,543 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.056847572326660156 seconds
2019-10-28 21:53:40,411 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8656289577484131 seconds
2019-10-28 21:53:42,595 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.183161735534668 seconds
2019-10-28 21:53:43,381 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.7859282493591309 seconds
2019-10-28 21:53:43,611 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.22835707664489746 seconds
2019-10-28 21:53:44,943 - root - INFO - SUCCESS Clicked element: <css->.mr-5>, Spend 0.3311502933502197 seconds
2019-10-28 21:53:46,121 - root - INFO - SUCCESS Clear and type element: <id->vPoolName> content: wzsvpool_001, Spend 0.17748188972473145 seconds
2019-10-28 21:53:46,389 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit_form']/div/div[2]/div/div/div[1]/span/span[2]/span>, Spend 0.26828670501708984 seconds
2019-10-28 21:53:47,018 - root - INFO - SUCCESS Element <css->.open > .form-control> type content: 虚拟资源,and sleep 0.5 seconds,input ENTER key, Spend 0.6263294219970703 seconds
2019-10-28 21:53:47,339 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit_form']/div/div[5]/div/div/div[1]/span/span[2]/span>, Spend 0.318148136138916 seconds
2019-10-28 21:53:47,959 - root - INFO - SUCCESS Element <css->.open > .form-control> type content: 数据中心,and sleep 0.5 seconds,input ENTER key, Spend 0.6183743476867676 seconds
2019-10-28 21:53:48,150 - root - INFO - FAIL Unable to click element: <xpath->//*[@id='AddandEdit_form']/div/div[6]/div/div/div[1]/span/span[2]/span>, Spend 0.1914534568786621 seconds
2019-10-28 21:53:48,151 - root - INFO - ############################### End ###############################
2019-10-28 22:00:00,889 - root - INFO - ############################### START ###############################
2019-10-28 22:00:10,743 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.852643966674805 seconds
2019-10-28 22:00:11,032 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2872314453125 seconds
2019-10-28 22:00:11,840 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7920665740966797 seconds
2019-10-28 22:00:11,954 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.11369466781616211 seconds
2019-10-28 22:00:12,025 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.06781673431396484 seconds
2019-10-28 22:00:12,077 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05186271667480469 seconds
2019-10-28 22:00:14,878 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7988615036010742 seconds
2019-10-28 22:00:17,102 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.2220571041107178 seconds
2019-10-28 22:00:17,900 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.7978646755218506 seconds
2019-10-28 22:00:18,132 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.23034143447875977 seconds
2019-10-28 22:00:19,524 - root - INFO - SUCCESS Clicked element: <css->.mr-5>, Spend 0.39095401763916016 seconds
2019-10-28 22:00:20,684 - root - INFO - SUCCESS Clear and type element: <id->vPoolName> content: wzsvpool_001, Spend 0.15852642059326172 seconds
2019-10-28 22:00:20,936 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit_form']/div/div[2]/div/div/div[1]/span/span[2]/span>, Spend 0.25136327743530273 seconds
2019-10-28 22:00:21,535 - root - INFO - SUCCESS Element <css->.open > .form-control> type content: 虚拟资源,and sleep 0.5 seconds,input ENTER key, Spend 0.5974001884460449 seconds
2019-10-28 22:00:21,851 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit_form']/div/div[5]/div/div/div[1]/span/span[2]/span>, Spend 0.3141627311706543 seconds
2019-10-28 22:00:22,428 - root - INFO - SUCCESS Element <css->.open > .form-control> type content: 数据中心,and sleep 0.5 seconds,input ENTER key, Spend 0.5764522552490234 seconds
2019-10-28 22:00:22,584 - root - INFO - SUCCESS Clear and type element: <id->vPoolDesc> content: ui自动化测试, Spend 0.1545860767364502 seconds
2019-10-28 22:00:22,829 - root - INFO - SUCCESS Clicked element: <xpath->//*[@id='AddandEdit']/div[3]/button[1]>, Spend 0.24435019493103027 seconds
2019-10-28 22:00:22,831 - root - INFO - ############################### End ###############################
2019-10-28 22:01:54,933 - root - INFO - ############################### START ###############################
2019-10-28 22:02:04,778 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.842674016952515 seconds
2019-10-28 22:02:05,100 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3206758499145508 seconds
2019-10-28 22:02:05,854 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.7370302677154541 seconds
2019-10-28 22:02:05,949 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.09275031089782715 seconds
2019-10-28 22:02:06,007 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05784440040588379 seconds
2019-10-28 22:02:06,069 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.060837507247924805 seconds
2019-10-28 22:02:09,022 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9524509906768799 seconds
2019-10-28 22:02:11,696 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.6718530654907227 seconds
2019-10-28 22:02:12,521 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.822798490524292 seconds
2019-10-28 22:02:12,807 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.2862696647644043 seconds
2019-10-28 22:02:12,972 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[12]> content: wzsvpool_001, Spend 0.16256332397460938 seconds
2019-10-28 22:02:14,008 - root - INFO - SUCCESS Get element text element: <xpath->//td[2]/div/span>, Spend 1.0362281799316406 seconds
2019-10-28 22:02:14,009 - root - INFO - ############################### End ###############################
2019-10-28 22:02:39,735 - root - INFO - ############################### START ###############################
2019-10-28 22:02:50,662 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.924770832061768 seconds
2019-10-28 22:02:50,947 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28423523902893066 seconds
2019-10-28 22:02:51,786 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.8237972259521484 seconds
2019-10-28 22:02:51,909 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.12267231941223145 seconds
2019-10-28 22:02:51,970 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05984187126159668 seconds
2019-10-28 22:02:52,025 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05285906791687012 seconds
2019-10-28 22:02:54,957 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.9305107593536377 seconds
2019-10-28 22:02:57,376 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.416534423828125 seconds
2019-10-28 22:02:58,206 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.8277900218963623 seconds
2019-10-28 22:02:58,460 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.25235533714294434 seconds
2019-10-28 22:02:58,598 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[12]> content: wzsvpool_001, Spend 0.1376326084136963 seconds
2019-10-28 22:02:59,683 - root - INFO - SUCCESS Get element text element: <xpath->//td[2]>, Spend 1.0831422805786133 seconds
2019-10-28 22:02:59,684 - root - INFO - ############################### End ###############################
2019-10-28 22:03:22,201 - root - INFO - ############################### START ###############################
2019-10-28 22:03:32,616 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.412657499313354 seconds
2019-10-28 22:03:32,930 - root - INFO - SUCCESS Set browser window maximized, Spend 0.312589168548584 seconds
2019-10-28 22:03:33,858 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.9025912284851074 seconds
2019-10-28 22:03:33,970 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.1107032299041748 seconds
2019-10-28 22:03:34,036 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.06582379341125488 seconds
2019-10-28 22:03:34,132 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.09474658966064453 seconds
2019-10-28 22:03:36,980 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8437414169311523 seconds
2019-10-28 22:03:39,427 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.445460081100464 seconds
2019-10-28 22:03:40,243 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.8147857189178467 seconds
2019-10-28 22:03:40,474 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.2314164638519287 seconds
2019-10-28 22:03:40,633 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[12]> content: wzsvpool_001, Spend 0.1585404872894287 seconds
2019-10-28 22:03:41,694 - root - INFO - SUCCESS Get element text element: <xpath->//td>, Spend 1.0611610412597656 seconds
2019-10-28 22:03:41,695 - root - INFO - ############################### End ###############################
2019-10-28 22:04:12,446 - root - INFO - ############################### START ###############################
2019-10-28 22:04:22,817 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.371255874633789 seconds
2019-10-28 22:04:23,180 - root - INFO - SUCCESS Set browser window maximized, Spend 0.36155009269714355 seconds
2019-10-28 22:04:24,124 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124, Spend 0.9235286712646484 seconds
2019-10-28 22:04:24,264 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wzs_0001, Spend 0.13962626457214355 seconds
2019-10-28 22:04:24,323 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.056849002838134766 seconds
2019-10-28 22:04:24,375 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.051860809326171875 seconds
2019-10-28 22:04:27,205 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.8276209831237793 seconds
2019-10-28 22:04:29,499 - root - INFO - SUCCESS Navigated to http:\\192.168.54.124/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.2938644886016846 seconds
2019-10-28 22:04:30,294 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuzsvdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.7928779125213623 seconds
2019-10-28 22:04:30,574 - root - INFO - SUCCESS Clicked element: <css->.btn-link:nth-child(1)>, Spend 0.2782561779022217 seconds
2019-10-28 22:04:30,720 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[12]> content: wzsvpool_001, Spend 0.14561009407043457 seconds
2019-10-28 22:04:31,757 - root - INFO - SUCCESS Get element text element: <xpath->//td>, Spend 1.0372505187988281 seconds
2019-10-28 22:04:31,758 - root - INFO - ############################### End ###############################

File diff suppressed because it is too large Load Diff

View File

@ -1,913 +0,0 @@
2019-10-30 09:02:37,157 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.309103965759277 seconds
2019-10-30 09:02:37,492 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3327901363372803 seconds
2019-10-30 09:02:37,996 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5040814876556396 seconds
2019-10-30 09:02:38,166 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.16954421997070312 seconds
2019-10-30 09:02:38,208 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04189348220825195 seconds
2019-10-30 09:02:38,253 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04288601875305176 seconds
2019-10-30 09:02:40,884 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6301620006561279 seconds
2019-10-30 09:02:42,255 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.3055076599121094 seconds
2019-10-30 09:02:42,972 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuz_svdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.7160840034484863 seconds
2019-10-30 09:02:43,748 - root - INFO - SUCCESS Clicked element: <xpath->//td[5]/div/a>, Spend 0.27426600456237793 seconds
2019-10-30 09:02:44,548 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[14]>, Spend 0.2982001304626465 seconds
2019-10-30 09:02:45,278 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.2284107208251953 seconds
2019-10-30 09:02:51,906 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.625683307647705 seconds
2019-10-30 09:03:54,476 - root - INFO - ############################### START ###############################
2019-10-30 09:04:03,761 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.283173561096191 seconds
2019-10-30 09:04:04,023 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26030468940734863 seconds
2019-10-30 09:04:04,492 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4537966251373291 seconds
2019-10-30 09:04:04,698 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.20445466041564941 seconds
2019-10-30 09:04:04,736 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.036899566650390625 seconds
2019-10-30 09:04:04,778 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089021682739258 seconds
2019-10-30 09:04:07,380 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5990879535675049 seconds
2019-10-30 09:04:10,049 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 2.6678669452667236 seconds
2019-10-30 09:04:10,304 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.25331974029541016 seconds
2019-10-30 09:04:11,431 - root - INFO - SUCCESS Clear and type element: <id->vdcName> content: wuz_svdc_001, Spend 0.12566542625427246 seconds
2019-10-30 09:04:11,664 - root - INFO - SUCCESS Clicked element: <css->.modal-footer:nth-child(3) > .btn-warning>, Spend 0.23237824440002441 seconds
2019-10-30 09:04:11,672 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 0.006981611251831055 seconds
2019-10-30 09:04:12,320 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuz_svdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6452758312225342 seconds
2019-10-30 09:04:12,447 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.12665390968322754 seconds
2019-10-30 09:04:13,866 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4172430038452148 seconds
2019-10-30 09:04:13,866 - root - INFO - ############################### End ###############################
2019-10-30 09:06:26,695 - root - INFO - ############################### START ###############################
2019-10-30 09:06:36,001 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.30507516860962 seconds
2019-10-30 09:06:36,280 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27825284004211426 seconds
2019-10-30 09:06:36,777 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48269224166870117 seconds
2019-10-30 09:06:36,857 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07978630065917969 seconds
2019-10-30 09:06:36,896 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03889751434326172 seconds
2019-10-30 09:06:36,939 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040895700454711914 seconds
2019-10-30 09:06:39,614 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.674196720123291 seconds
2019-10-30 09:06:40,921 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 1.3055071830749512 seconds
2019-10-30 09:06:41,596 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuz_svdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6742391586303711 seconds
2019-10-30 09:06:42,330 - root - INFO - SUCCESS Clicked element: <xpath->//td[5]/div/a>, Spend 0.23336553573608398 seconds
2019-10-30 09:06:43,058 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[14]>, Spend 0.2253882884979248 seconds
2019-10-30 09:06:43,788 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.22812581062316895 seconds
2019-10-30 09:06:43,795 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/resVDCMgr, Spend 0.005984783172607422 seconds
2019-10-30 09:06:45,382 - root - INFO - SUCCESS Element <css->.input-cont > .form-control> type content: wuz_svdc_001,and sleep 0.5 seconds,input ENTER key, Spend 0.5853536128997803 seconds
2019-10-30 09:06:50,458 - root - INFO - FAIL Element: <xpath->//td> is not exist, Spend 5.075455665588379 seconds
2019-10-30 09:06:51,796 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3374474048614502 seconds
2019-10-30 09:06:51,796 - root - INFO - ############################### End ###############################
2019-10-30 09:20:06,452 - root - INFO - ############################### START ###############################
2019-10-30 09:20:15,737 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.282177925109863 seconds
2019-10-30 09:20:16,038 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30019402503967285 seconds
2019-10-30 09:20:16,560 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5051357746124268 seconds
2019-10-30 09:20:16,745 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.18550515174865723 seconds
2019-10-30 09:20:16,784 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.037896156311035156 seconds
2019-10-30 09:20:16,827 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188871383666992 seconds
2019-10-30 09:20:19,460 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6323065757751465 seconds
2019-10-30 09:20:21,077 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.6147124767303467 seconds
2019-10-30 09:20:21,758 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.681178092956543 seconds
2019-10-30 09:20:27,314 - root - INFO - FAIL Unable to click element: <xpath->//span[contains(.,'更多')]>, Spend 5.054413557052612 seconds
2019-10-30 09:20:28,525 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2097883224487305 seconds
2019-10-30 09:20:28,526 - root - INFO - ############################### End ###############################
2019-10-30 09:20:44,219 - root - INFO - ############################### START ###############################
2019-10-30 09:20:53,568 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.348002672195435 seconds
2019-10-30 09:20:53,841 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27327656745910645 seconds
2019-10-30 09:20:54,344 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48713231086730957 seconds
2019-10-30 09:20:54,417 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07080936431884766 seconds
2019-10-30 09:20:54,459 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04188680648803711 seconds
2019-10-30 09:20:54,499 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889656066894531 seconds
2019-10-30 09:20:57,114 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6143326759338379 seconds
2019-10-30 09:20:58,473 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.3573689460754395 seconds
2019-10-30 09:20:58,639 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.1655583381652832 seconds
2019-10-30 09:20:59,084 - root - INFO - SUCCESS Clicked element: <xpath->//span/button/i>, Spend 0.443814754486084 seconds
2019-10-30 09:21:00,753 - root - INFO - SUCCESS Element <xpath->//div[@id='selectClientModal']/div[2]/div/div/div/form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.667212724685669 seconds
2019-10-30 09:21:02,018 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-body']/div[@class='box-body form']/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.2652900218963623 seconds
2019-10-30 09:21:02,239 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='selectClientModal']/div[@class='modal-footer']/button[@class='btn btn-flat btn-primary']>, Spend 0.22040748596191406 seconds
2019-10-30 09:21:02,362 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: wuzs_auth_user_001, Spend 0.1216742992401123 seconds
2019-10-30 09:21:02,458 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzushun, Spend 0.09573006629943848 seconds
2019-10-30 09:21:02,540 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.08178114891052246 seconds
2019-10-30 09:21:02,614 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.07380437850952148 seconds
2019-10-30 09:21:02,707 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wzs@163.com, Spend 0.09075784683227539 seconds
2019-10-30 09:21:03,432 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.7240622043609619 seconds
2019-10-30 09:21:03,441 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 0.008958101272583008 seconds
2019-10-30 09:21:04,244 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_auth_user_001,and sleep 0.5 seconds,input ENTER key, Spend 0.8018543720245361 seconds
2019-10-30 09:21:04,424 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.1795198917388916 seconds
2019-10-30 09:21:05,544 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1200106143951416 seconds
2019-10-30 09:21:05,545 - root - INFO - ############################### End ###############################
2019-10-30 09:21:13,402 - root - INFO - ############################### START ###############################
2019-10-30 09:21:22,236 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.832345962524414 seconds
2019-10-30 09:21:22,518 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28024959564208984 seconds
2019-10-30 09:21:23,031 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4961256980895996 seconds
2019-10-30 09:21:23,107 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07480025291442871 seconds
2019-10-30 09:21:23,148 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03989362716674805 seconds
2019-10-30 09:21:23,189 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040889739990234375 seconds
2019-10-30 09:21:25,833 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6422779560089111 seconds
2019-10-30 09:21:27,437 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.6027448177337646 seconds
2019-10-30 09:21:28,083 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.645308256149292 seconds
2019-10-30 09:21:33,654 - root - INFO - FAIL Unable to click element: <xpath->//span[contains(.,'更多')]>, Spend 5.068528652191162 seconds
2019-10-30 09:21:35,122 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.46701979637146 seconds
2019-10-30 09:21:35,123 - root - INFO - ############################### End ###############################
2019-10-30 09:22:14,166 - root - INFO - ############################### START ###############################
2019-10-30 09:22:23,496 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.328007936477661 seconds
2019-10-30 09:22:23,769 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2712748050689697 seconds
2019-10-30 09:22:24,283 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.49767017364501953 seconds
2019-10-30 09:22:24,357 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07280111312866211 seconds
2019-10-30 09:22:24,398 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03989291191101074 seconds
2019-10-30 09:22:24,445 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04587721824645996 seconds
2019-10-30 09:22:27,226 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7789156436920166 seconds
2019-10-30 09:22:28,849 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.6216652393341064 seconds
2019-10-30 09:22:29,522 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6732008457183838 seconds
2019-10-30 09:22:39,549 - root - INFO - FAIL Unable to click element: <xpath->//span[contains(.,'更多')]>, Spend 5.025920629501343 seconds
2019-10-30 09:22:40,652 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1020352840423584 seconds
2019-10-30 09:22:40,653 - root - INFO - ############################### End ###############################
2019-10-30 09:22:50,412 - root - INFO - ############################### START ###############################
2019-10-30 09:22:59,723 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.30858039855957 seconds
2019-10-30 09:22:59,987 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2622964382171631 seconds
2019-10-30 09:23:00,474 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.47099757194519043 seconds
2019-10-30 09:23:00,546 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07080912590026855 seconds
2019-10-30 09:23:00,587 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.039893150329589844 seconds
2019-10-30 09:23:00,630 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188704490661621 seconds
2019-10-30 09:23:03,303 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6711900234222412 seconds
2019-10-30 09:23:04,548 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.2446706295013428 seconds
2019-10-30 09:23:05,218 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_auth_user_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6701643466949463 seconds
2019-10-30 09:23:10,473 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'更多')]>, Spend 0.25328779220581055 seconds
2019-10-30 09:23:11,223 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.2472693920135498 seconds
2019-10-30 09:23:11,956 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.2313826084136963 seconds
2019-10-30 09:23:11,964 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 0.007978439331054688 seconds
2019-10-30 09:23:12,614 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_auth_user_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6482682228088379 seconds
2019-10-30 09:23:12,659 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.044879913330078125 seconds
2019-10-30 09:23:13,970 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3084983825683594 seconds
2019-10-30 09:23:13,970 - root - INFO - ############################### End ###############################
2019-10-30 09:29:52,404 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.811437129974365 seconds
2019-10-30 09:29:52,683 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27725887298583984 seconds
2019-10-30 09:29:53,174 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4900333881378174 seconds
2019-10-30 09:29:53,252 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07779169082641602 seconds
2019-10-30 09:29:53,288 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03490638732910156 seconds
2019-10-30 09:29:53,330 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989434242248535 seconds
2019-10-30 09:29:55,876 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5455315113067627 seconds
2019-10-30 09:29:57,786 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.9088921546936035 seconds
2019-10-30 09:29:58,429 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_auto01_project,and sleep 0.5 seconds,input ENTER key, Spend 0.6422829627990723 seconds
2019-10-30 09:29:59,233 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'更多')]>, Spend 0.3010749816894531 seconds
2019-10-30 09:29:59,959 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.22440671920776367 seconds
2019-10-30 09:30:00,695 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.23316383361816406 seconds
2019-10-30 09:32:26,761 - root - INFO - ############################### START ###############################
2019-10-30 09:32:36,111 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.348958730697632 seconds
2019-10-30 09:32:36,379 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2672853469848633 seconds
2019-10-30 09:32:36,902 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5076761245727539 seconds
2019-10-30 09:32:36,982 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07878899574279785 seconds
2019-10-30 09:32:37,024 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04088926315307617 seconds
2019-10-30 09:32:37,075 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04886960983276367 seconds
2019-10-30 09:32:39,636 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5604989528656006 seconds
2019-10-30 09:32:41,433 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.7961952686309814 seconds
2019-10-30 09:32:41,550 - root - INFO - SUCCESS Clicked element: <xpath->//div[5]/button/i>, Spend 0.11570310592651367 seconds
2019-10-30 09:32:41,824 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'请选择运营部门')]>, Spend 0.27325892448425293 seconds
2019-10-30 09:32:42,460 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6352982521057129 seconds
2019-10-30 09:32:42,698 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/div/div/button[2]/i>, Spend 0.23640966415405273 seconds
2019-10-30 09:32:47,748 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_tenant_10236')]>, Spend 5.050522804260254 seconds
2019-10-30 09:32:49,146 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3962986469268799 seconds
2019-10-30 09:32:49,146 - root - INFO - ############################### End ###############################
2019-10-30 09:32:54,633 - root - INFO - ############################### START ###############################
2019-10-30 09:33:03,912 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.278260707855225 seconds
2019-10-30 09:33:04,191 - root - INFO - SUCCESS Set browser window maximized, Spend 0.278764009475708 seconds
2019-10-30 09:33:04,693 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4886951446533203 seconds
2019-10-30 09:33:04,773 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07779192924499512 seconds
2019-10-30 09:33:04,810 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03589987754821777 seconds
2019-10-30 09:33:04,853 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04287123680114746 seconds
2019-10-30 09:33:07,486 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6302728652954102 seconds
2019-10-30 09:33:12,474 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 4.984675645828247 seconds
2019-10-30 09:33:12,630 - root - INFO - SUCCESS Clicked element: <xpath->//div[5]/button/i>, Spend 0.15558195114135742 seconds
2019-10-30 09:33:12,907 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'请选择运营部门')]>, Spend 0.27526235580444336 seconds
2019-10-30 09:33:13,514 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6063768863677979 seconds
2019-10-30 09:33:13,750 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/div/div/button[2]/i>, Spend 0.23537206649780273 seconds
2019-10-30 09:33:18,798 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_tenant_10236')]>, Spend 5.047499895095825 seconds
2019-10-30 09:33:20,049 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.251685619354248 seconds
2019-10-30 09:33:20,050 - root - INFO - ############################### End ###############################
2019-10-30 09:33:57,917 - root - INFO - ############################### START ###############################
2019-10-30 09:34:07,241 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.32203459739685 seconds
2019-10-30 09:34:07,522 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28024888038635254 seconds
2019-10-30 09:34:08,087 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.548065185546875 seconds
2019-10-30 09:34:08,162 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07379984855651855 seconds
2019-10-30 09:34:08,198 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03490710258483887 seconds
2019-10-30 09:34:08,240 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188895225524902 seconds
2019-10-30 09:34:10,906 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6640655994415283 seconds
2019-10-30 09:34:12,342 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.4351623058319092 seconds
2019-10-30 09:34:12,489 - root - INFO - SUCCESS Clicked element: <xpath->//div[5]/button/i>, Spend 0.14557623863220215 seconds
2019-10-30 09:34:12,878 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'请选择运营部门')]>, Spend 0.3889601230621338 seconds
2019-10-30 09:34:13,523 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6442782878875732 seconds
2019-10-30 09:34:13,811 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/div/div/button[2]/i>, Spend 0.2852773666381836 seconds
2019-10-30 09:34:14,073 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_tenant_10236')]>, Spend 0.2603001594543457 seconds
2019-10-30 09:34:14,199 - root - INFO - SUCCESS Clear and type element: <name->projectName> content: wuzs_project_10236, Spend 0.12566375732421875 seconds
2019-10-30 09:34:14,261 - root - INFO - SUCCESS Clear and type element: <name->projectDescription> content: ui自动化, Spend 0.061834096908569336 seconds
2019-10-30 09:34:14,429 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.16755414009094238 seconds
2019-10-30 09:34:14,471 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 0.04089021682739258 seconds
2019-10-30 09:34:15,167 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_project_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6951417922973633 seconds
2019-10-30 09:34:15,327 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.15957331657409668 seconds
2019-10-30 09:34:16,659 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3304407596588135 seconds
2019-10-30 09:34:16,659 - root - INFO - ############################### End ###############################
2019-10-30 09:34:22,487 - root - INFO - ############################### START ###############################
2019-10-30 09:34:32,290 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.800743103027344 seconds
2019-10-30 09:34:32,575 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28424835205078125 seconds
2019-10-30 09:34:33,157 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5346159934997559 seconds
2019-10-30 09:34:33,237 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07879090309143066 seconds
2019-10-30 09:34:33,278 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.039893388748168945 seconds
2019-10-30 09:34:33,324 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04587817192077637 seconds
2019-10-30 09:34:35,981 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6540229320526123 seconds
2019-10-30 09:34:37,544 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.5628166198730469 seconds
2019-10-30 09:34:38,226 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_project_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6811771392822266 seconds
2019-10-30 09:34:38,961 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'更多')]>, Spend 0.2333683967590332 seconds
2019-10-30 09:34:39,757 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.2941725254058838 seconds
2019-10-30 09:34:40,548 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.2872014045715332 seconds
2019-10-30 09:34:40,591 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 0.04092860221862793 seconds
2019-10-30 09:34:41,210 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_project_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6182956695556641 seconds
2019-10-30 09:34:46,279 - root - INFO - FAIL Element: <xpath->//td> is not exist, Spend 5.06749415397644 seconds
2019-10-30 09:34:47,340 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.0591466426849365 seconds
2019-10-30 09:34:47,341 - root - INFO - ############################### End ###############################
2019-10-30 09:40:56,628 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.308107852935791 seconds
2019-10-30 09:40:56,901 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27346301078796387 seconds
2019-10-30 09:40:57,523 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.620063066482544 seconds
2019-10-30 09:40:57,596 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs0001, Spend 0.0718076229095459 seconds
2019-10-30 09:40:57,645 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.046875 seconds
2019-10-30 09:40:57,689 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.043883323669433594 seconds
2019-10-30 09:41:00,422 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7300441265106201 seconds
2019-10-30 09:41:05,470 - root - INFO - FAIL Unable element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 5.0475311279296875 seconds
2019-10-30 09:41:30,979 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.267216920852661 seconds
2019-10-30 09:41:31,256 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2769320011138916 seconds
2019-10-30 09:41:31,697 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4403245449066162 seconds
2019-10-30 09:41:31,866 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.16754913330078125 seconds
2019-10-30 09:41:31,893 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.027925491333007812 seconds
2019-10-30 09:41:31,919 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.024932861328125 seconds
2019-10-30 09:41:34,527 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6063754558563232 seconds
2019-10-30 09:41:39,592 - root - INFO - FAIL Unable element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 5.063629627227783 seconds
2019-10-30 09:42:09,317 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.763888359069824 seconds
2019-10-30 09:42:09,626 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30817508697509766 seconds
2019-10-30 09:42:10,070 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.44332218170166016 seconds
2019-10-30 09:42:10,223 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.1515965461730957 seconds
2019-10-30 09:42:10,250 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.02593255043029785 seconds
2019-10-30 09:42:10,274 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.023937225341796875 seconds
2019-10-30 09:42:12,909 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6332988739013672 seconds
2019-10-30 09:42:14,607 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.695467472076416 seconds
2019-10-30 09:42:15,205 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.598400354385376 seconds
2019-10-30 09:42:15,931 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='card']/div/div[2]/div/a[2]/i>, Spend 0.22442412376403809 seconds
2019-10-30 09:42:16,658 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'删除')]>, Spend 0.22635412216186523 seconds
2019-10-30 09:42:17,381 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.22139430046081543 seconds
2019-10-30 09:43:33,655 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.359300136566162 seconds
2019-10-30 09:43:34,010 - root - INFO - SUCCESS Set browser window maximized, Spend 0.35446882247924805 seconds
2019-10-30 09:43:34,704 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6931447982788086 seconds
2019-10-30 09:43:34,783 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07778573036193848 seconds
2019-10-30 09:43:34,850 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.06582260131835938 seconds
2019-10-30 09:43:34,892 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040891170501708984 seconds
2019-10-30 09:43:37,542 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6482672691345215 seconds
2019-10-30 09:43:39,277 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.7353577613830566 seconds
2019-10-30 09:43:39,954 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6751930713653564 seconds
2019-10-30 09:43:40,742 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='card']/div/div[2]/div/a[2]/i>, Spend 0.2862370014190674 seconds
2019-10-30 09:43:41,523 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'删除')]>, Spend 0.27821779251098633 seconds
2019-10-30 09:43:42,329 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.30314016342163086 seconds
2019-10-30 10:40:11,944 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.852652072906494 seconds
2019-10-30 10:40:12,262 - root - INFO - SUCCESS Set browser window maximized, Spend 0.31714940071105957 seconds
2019-10-30 10:40:12,877 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6138856410980225 seconds
2019-10-30 10:40:12,950 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07081222534179688 seconds
2019-10-30 10:40:12,991 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03989410400390625 seconds
2019-10-30 10:40:13,028 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.035904645919799805 seconds
2019-10-30 10:40:15,812 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7828986644744873 seconds
2019-10-30 10:40:17,477 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.6635515689849854 seconds
2019-10-30 10:40:18,309 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.8297863006591797 seconds
2019-10-30 10:40:18,520 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'查看详细')]>, Spend 0.2104325294494629 seconds
2019-10-30 10:40:18,810 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'岗位')]>, Spend 0.28922414779663086 seconds
2019-10-30 10:40:23,866 - root - INFO - FAIL Unable to click element: <xpath->//td[3]/div/a>, Spend 5.055691242218018 seconds
2019-10-30 10:41:01,981 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.362960815429688 seconds
2019-10-30 10:41:02,253 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27063679695129395 seconds
2019-10-30 10:41:02,735 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4802215099334717 seconds
2019-10-30 10:41:02,873 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.13863325119018555 seconds
2019-10-30 10:41:02,913 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.038895606994628906 seconds
2019-10-30 10:41:02,953 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.038897037506103516 seconds
2019-10-30 10:41:05,680 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7229974269866943 seconds
2019-10-30 10:41:08,985 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 3.3031680583953857 seconds
2019-10-30 10:41:09,664 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6781847476959229 seconds
2019-10-30 10:41:10,369 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'查看详细')]>, Spend 0.20337939262390137 seconds
2019-10-30 10:41:11,239 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'岗位')]>, Spend 0.368011474609375 seconds
2019-10-30 10:41:11,985 - root - INFO - SUCCESS Clicked element: <xpath->//td[3]/div/a>, Spend 0.24437546730041504 seconds
2019-10-30 10:41:12,733 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'移除')]>, Spend 0.24531054496765137 seconds
2019-10-30 10:41:13,527 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.29110050201416016 seconds
2019-10-30 10:41:13,540 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.011968135833740234 seconds
2019-10-30 10:41:14,224 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.6841351985931396 seconds
2019-10-30 10:41:19,760 - root - INFO - FAIL Unable to click element: <xpath->//div[@id='card']/div/div[2]/div/a[2]/i>, Spend 5.035578966140747 seconds
2019-10-30 10:42:38,445 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.265538454055786 seconds
2019-10-30 10:42:38,759 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3117029666900635 seconds
2019-10-30 10:42:39,453 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6941430568695068 seconds
2019-10-30 10:42:39,514 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05984091758728027 seconds
2019-10-30 10:42:39,582 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.06682181358337402 seconds
2019-10-30 10:42:39,634 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05086398124694824 seconds
2019-10-30 10:42:42,301 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6660618782043457 seconds
2019-10-30 10:42:44,067 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.7642812728881836 seconds
2019-10-30 10:42:49,154 - root - INFO - FAIL Unable to clear and type element: <name->tenantName> content: , Spend 5.084567546844482 seconds
2019-10-30 10:43:43,763 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.309935569763184 seconds
2019-10-30 10:43:44,039 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27426886558532715 seconds
2019-10-30 10:43:44,628 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.589423656463623 seconds
2019-10-30 10:43:44,697 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06682014465332031 seconds
2019-10-30 10:43:44,741 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.041886329650878906 seconds
2019-10-30 10:43:44,780 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690195083618164 seconds
2019-10-30 10:43:47,415 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6332759857177734 seconds
2019-10-30 10:43:49,134 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.7184076309204102 seconds
2019-10-30 10:43:49,706 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: ,and sleep 0.5 seconds,input ENTER key, Spend 0.5714762210845947 seconds
2019-10-30 10:43:50,433 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_10236,and sleep 0.5 seconds,input ENTER key, Spend 0.7250633239746094 seconds
2019-10-30 10:43:51,230 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='card']/div/div[2]/div/a[2]/i>, Spend 0.29622983932495117 seconds
2019-10-30 10:43:51,984 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'删除')]>, Spend 0.2512824535369873 seconds
2019-10-30 10:43:52,736 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.24916601181030273 seconds
2019-10-30 10:48:11,363 - root - INFO - ############################### START ###############################
2019-10-30 10:48:20,656 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.291969776153564 seconds
2019-10-30 10:48:20,926 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2681770324707031 seconds
2019-10-30 10:48:21,485 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5456597805023193 seconds
2019-10-30 10:48:21,633 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.14760971069335938 seconds
2019-10-30 10:48:21,685 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.050864219665527344 seconds
2019-10-30 10:48:21,734 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.046874284744262695 seconds
2019-10-30 10:48:25,044 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.3094921112060547 seconds
2019-10-30 10:48:26,711 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.6655452251434326 seconds
2019-10-30 10:48:27,432 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.7210707664489746 seconds
2019-10-30 10:48:28,151 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'查看详细')]>, Spend 0.21716570854187012 seconds
2019-10-30 10:48:28,967 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'岗位')]>, Spend 0.31395840644836426 seconds
2019-10-30 10:48:29,712 - root - INFO - SUCCESS Clicked element: <xpath->//td[3]/div/a>, Spend 0.24414753913879395 seconds
2019-10-30 10:48:30,497 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'移除')]>, Spend 0.2842395305633545 seconds
2019-10-30 10:48:31,236 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.23661088943481445 seconds
2019-10-30 10:48:31,272 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.032913923263549805 seconds
2019-10-30 10:48:31,914 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: ,and sleep 0.5 seconds,input ENTER key, Spend 0.641277551651001 seconds
2019-10-30 10:48:32,559 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6432838439941406 seconds
2019-10-30 10:48:38,105 - root - INFO - FAIL Unable to click element: <xpath->//div[@id='card']/div/div[2]/div/a[2]/i>, Spend 5.042276859283447 seconds
2019-10-30 10:48:39,667 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.559866189956665 seconds
2019-10-30 10:48:39,667 - root - INFO - ############################### End ###############################
2019-10-30 10:52:56,692 - root - INFO - ############################### START ###############################
2019-10-30 10:53:06,011 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.319052696228027 seconds
2019-10-30 10:53:06,293 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28024840354919434 seconds
2019-10-30 10:53:06,994 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6891703605651855 seconds
2019-10-30 10:53:07,064 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06881499290466309 seconds
2019-10-30 10:53:07,114 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.047872066497802734 seconds
2019-10-30 10:53:07,156 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188799858093262 seconds
2019-10-30 10:53:09,906 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7469933032989502 seconds
2019-10-30 10:53:11,713 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.8061528205871582 seconds
2019-10-30 10:53:12,384 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6702079772949219 seconds
2019-10-30 10:53:13,040 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'查看详细')]>, Spend 0.15358996391296387 seconds
2019-10-30 10:53:13,899 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'岗位')]>, Spend 0.35803961753845215 seconds
2019-10-30 10:53:14,706 - root - INFO - SUCCESS Clicked element: <xpath->//td[3]/div/a>, Spend 0.3071706295013428 seconds
2019-10-30 10:53:20,247 - root - INFO - FAIL Unable to click element: <xpath->//button[contains(.,'移除')]>, Spend 5.037548542022705 seconds
2019-10-30 10:53:20,301 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.0508577823638916 seconds
2019-10-30 10:53:21,071 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: ,and sleep 0.5 seconds,input ENTER key, Spend 0.7679471969604492 seconds
2019-10-30 10:53:21,706 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6343011856079102 seconds
2019-10-30 10:53:22,461 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='card']/div/div[2]/div/a[2]/i>, Spend 0.25229549407958984 seconds
2019-10-30 10:53:23,244 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'删除')]>, Spend 0.2812824249267578 seconds
2019-10-30 10:53:24,038 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.2912635803222656 seconds
2019-10-30 10:53:24,055 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.015965938568115234 seconds
2019-10-30 10:53:24,721 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_tenant_auto_001,and sleep 0.5 seconds,input ENTER key, Spend 0.6641800403594971 seconds
2019-10-30 10:53:29,747 - root - INFO - FAIL Element: <id->card> is not exist, Spend 5.025251865386963 seconds
2019-10-30 10:53:31,720 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.970707893371582 seconds
2019-10-30 10:53:31,720 - root - INFO - ############################### End ###############################
2019-10-30 11:16:02,396 - root - INFO - ############################### START ###############################
2019-10-30 11:16:11,752 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.355517148971558 seconds
2019-10-30 11:16:12,036 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2824430465698242 seconds
2019-10-30 11:16:12,104 - root - INFO - ############################### START ###############################
2019-10-30 11:16:21,848 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.742944240570068 seconds
2019-10-30 11:16:22,128 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27725815773010254 seconds
2019-10-30 11:17:09,808 - root - INFO - ############################### START ###############################
2019-10-30 11:17:22,220 - root - INFO - SUCCESS Start a new browser: firefox, Spend 12.410806894302368 seconds
2019-10-30 11:17:22,528 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3071780204772949 seconds
2019-10-30 11:17:23,400 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.8601922988891602 seconds
2019-10-30 11:17:23,470 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.06881570816040039 seconds
2019-10-30 11:17:23,508 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03689908981323242 seconds
2019-10-30 11:17:23,552 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.043883323669433594 seconds
2019-10-30 11:17:26,625 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 1.071920394897461 seconds
2019-10-30 11:17:29,200 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 2.456430673599243 seconds
2019-10-30 11:17:29,201 - root - INFO - 删除endpint
2019-10-30 11:17:29,523 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.32114267349243164 seconds
2019-10-30 11:17:30,274 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.2481386661529541 seconds
2019-10-30 11:17:30,497 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.22140932083129883 seconds
2019-10-30 11:17:31,317 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.31815433502197266 seconds
2019-10-30 11:17:32,045 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.22540283203125 seconds
2019-10-30 11:17:32,310 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.26428818702697754 seconds
2019-10-30 11:17:32,317 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.005984306335449219 seconds
2019-10-30 11:17:32,549 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2323777675628662 seconds
2019-10-30 11:17:33,064 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.012768268585205078 seconds
2019-10-30 11:17:34,488 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4242167472839355 seconds
2019-10-30 11:17:34,489 - root - INFO - ############################### End ###############################
2019-10-30 11:17:34,636 - root - INFO - ############################### START ###############################
2019-10-30 11:17:43,910 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.272199869155884 seconds
2019-10-30 11:17:44,231 - root - INFO - SUCCESS Set browser window maximized, Spend 0.31816911697387695 seconds
2019-10-30 11:17:44,748 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5026533603668213 seconds
2019-10-30 11:17:44,828 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07979178428649902 seconds
2019-10-30 11:17:44,867 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03789830207824707 seconds
2019-10-30 11:17:44,909 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04088997840881348 seconds
2019-10-30 11:17:47,465 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5545156002044678 seconds
2019-10-30 11:17:48,816 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3414502143859863 seconds
2019-10-30 11:17:48,817 - root - INFO - 删除endpint
2019-10-30 11:17:49,064 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.24634218215942383 seconds
2019-10-30 11:17:49,811 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.24533605575561523 seconds
2019-10-30 11:17:50,036 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.2233729362487793 seconds
2019-10-30 11:17:50,839 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.3001980781555176 seconds
2019-10-30 11:17:51,627 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.2850911617279053 seconds
2019-10-30 11:17:51,856 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.22739219665527344 seconds
2019-10-30 11:17:51,862 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.0059854984283447266 seconds
2019-10-30 11:17:52,085 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.22236323356628418 seconds
2019-10-30 11:17:52,637 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.04886746406555176 seconds
2019-10-30 11:17:54,492 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.8540291786193848 seconds
2019-10-30 11:17:54,492 - root - INFO - ############################### End ###############################
2019-10-30 11:18:48,174 - root - INFO - ############################### START ###############################
2019-10-30 11:18:57,526 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.35094928741455 seconds
2019-10-30 11:18:57,816 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2902235984802246 seconds
2019-10-30 11:18:58,311 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48171210289001465 seconds
2019-10-30 11:18:58,440 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.12766361236572266 seconds
2019-10-30 11:18:58,479 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03789877891540527 seconds
2019-10-30 11:18:58,539 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05983853340148926 seconds
2019-10-30 11:19:01,177 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6352894306182861 seconds
2019-10-30 11:19:02,777 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.5897762775421143 seconds
2019-10-30 11:19:02,778 - root - INFO - 添加endpint
2019-10-30 11:19:03,010 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2314305305480957 seconds
2019-10-30 11:19:03,841 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.32914280891418457 seconds
2019-10-30 11:19:04,067 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.2243671417236328 seconds
2019-10-30 11:19:04,876 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.3091604709625244 seconds
2019-10-30 11:19:05,676 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.29720497131347656 seconds
2019-10-30 11:19:05,852 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: https://192.168.54.136, Spend 0.17352747917175293 seconds
2019-10-30 11:19:06,096 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.24335122108459473 seconds
2019-10-30 11:19:06,103 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.005982398986816406 seconds
2019-10-30 11:19:06,325 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2204277515411377 seconds
2019-10-30 11:19:07,351 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.02493453025817871 seconds
2019-10-30 11:19:08,776 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4241859912872314 seconds
2019-10-30 11:19:08,777 - root - INFO - ############################### End ###############################
2019-10-30 11:19:08,792 - root - INFO - ############################### START ###############################
2019-10-30 11:19:18,090 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.297136068344116 seconds
2019-10-30 11:19:18,366 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2748105525970459 seconds
2019-10-30 11:19:18,858 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48880720138549805 seconds
2019-10-30 11:19:18,934 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07476663589477539 seconds
2019-10-30 11:19:18,981 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04586935043334961 seconds
2019-10-30 11:19:19,048 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.06582164764404297 seconds
2019-10-30 11:19:21,688 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6382920742034912 seconds
2019-10-30 11:19:23,023 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3254520893096924 seconds
2019-10-30 11:19:23,024 - root - INFO - 添加endpint
2019-10-30 11:19:23,276 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.25136446952819824 seconds
2019-10-30 11:19:24,104 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.32611966133117676 seconds
2019-10-30 11:19:24,332 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.22839093208312988 seconds
2019-10-30 11:19:25,157 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.3220024108886719 seconds
2019-10-30 11:19:25,909 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.2513282299041748 seconds
2019-10-30 11:19:26,075 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.103:5000/v3, Spend 0.1655580997467041 seconds
2019-10-30 11:19:26,328 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.25032830238342285 seconds
2019-10-30 11:19:26,334 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.004987239837646484 seconds
2019-10-30 11:19:26,556 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.22141575813293457 seconds
2019-10-30 11:19:27,593 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.03586411476135254 seconds
2019-10-30 11:19:28,849 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2546374797821045 seconds
2019-10-30 11:19:28,850 - root - INFO - ############################### End ###############################
2019-10-30 11:22:25,027 - root - INFO - ############################### START ###############################
2019-10-30 11:22:34,328 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.300127983093262 seconds
2019-10-30 11:22:34,604 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27533721923828125 seconds
2019-10-30 11:22:35,093 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4763481616973877 seconds
2019-10-30 11:22:35,175 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.08078145980834961 seconds
2019-10-30 11:22:35,222 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0468747615814209 seconds
2019-10-30 11:22:35,265 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.041887521743774414 seconds
2019-10-30 11:22:37,862 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.595404863357544 seconds
2019-10-30 11:22:39,635 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.763286828994751 seconds
2019-10-30 11:22:39,636 - root - INFO - 删除endpint
2019-10-30 11:22:39,864 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.226395845413208 seconds
2019-10-30 11:22:40,637 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.27127599716186523 seconds
2019-10-30 11:22:40,858 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.22140812873840332 seconds
2019-10-30 11:22:41,607 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.2471151351928711 seconds
2019-10-30 11:22:42,369 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.2611382007598877 seconds
2019-10-30 11:22:42,598 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.2283930778503418 seconds
2019-10-30 11:22:42,604 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.005984306335449219 seconds
2019-10-30 11:22:42,830 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.22439813613891602 seconds
2019-10-30 11:22:43,360 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.028923749923706055 seconds
2019-10-30 11:22:44,795 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.433166265487671 seconds
2019-10-30 11:22:44,796 - root - INFO - ############################### End ###############################
2019-10-30 11:22:44,808 - root - INFO - ############################### START ###############################
2019-10-30 11:22:54,014 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.205379486083984 seconds
2019-10-30 11:22:54,288 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27326536178588867 seconds
2019-10-30 11:22:54,788 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.49567341804504395 seconds
2019-10-30 11:22:54,867 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07679510116577148 seconds
2019-10-30 11:22:54,909 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.041877031326293945 seconds
2019-10-30 11:22:54,957 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04687619209289551 seconds
2019-10-30 11:22:57,533 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5744359493255615 seconds
2019-10-30 11:22:58,864 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3194715976715088 seconds
2019-10-30 11:22:58,864 - root - INFO - 删除endpint
2019-10-30 11:22:59,119 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2533228397369385 seconds
2019-10-30 11:22:59,867 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.2462022304534912 seconds
2019-10-30 11:23:00,121 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.25229406356811523 seconds
2019-10-30 11:23:00,931 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.30713939666748047 seconds
2019-10-30 11:23:01,664 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.2292320728302002 seconds
2019-10-30 11:23:01,892 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.22838973999023438 seconds
2019-10-30 11:23:01,901 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.00897669792175293 seconds
2019-10-30 11:23:02,127 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.22539639472961426 seconds
2019-10-30 11:23:02,642 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.012955904006958008 seconds
2019-10-30 11:23:04,225 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.5818352699279785 seconds
2019-10-30 11:23:04,225 - root - INFO - ############################### End ###############################
2019-10-30 11:25:22,461 - root - INFO - ############################### START ###############################
2019-10-30 11:25:31,802 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.340986490249634 seconds
2019-10-30 11:25:32,076 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27127575874328613 seconds
2019-10-30 11:25:32,580 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.49265098571777344 seconds
2019-10-30 11:25:32,650 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.06881427764892578 seconds
2019-10-30 11:25:32,693 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04188728332519531 seconds
2019-10-30 11:25:32,736 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089188575744629 seconds
2019-10-30 11:25:35,345 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6073732376098633 seconds
2019-10-30 11:25:37,111 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.75832200050354 seconds
2019-10-30 11:25:37,112 - root - INFO - 添加endpint
2019-10-30 11:25:37,339 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2263660430908203 seconds
2019-10-30 11:25:38,103 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.26130127906799316 seconds
2019-10-30 11:25:38,326 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.22240638732910156 seconds
2019-10-30 11:25:39,182 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.3539924621582031 seconds
2019-10-30 11:25:39,991 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.3070545196533203 seconds
2019-10-30 11:25:40,155 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: https://192.168.54.136, Spend 0.16356182098388672 seconds
2019-10-30 11:25:40,399 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.24334955215454102 seconds
2019-10-30 11:25:40,405 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.004987001419067383 seconds
2019-10-30 11:25:40,627 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.21938705444335938 seconds
2019-10-30 11:25:41,659 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.03090834617614746 seconds
2019-10-30 11:25:43,150 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4909586906433105 seconds
2019-10-30 11:25:43,151 - root - INFO - ############################### End ###############################
2019-10-30 11:25:43,163 - root - INFO - ############################### START ###############################
2019-10-30 11:25:52,370 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.206378698348999 seconds
2019-10-30 11:25:52,641 - root - INFO - SUCCESS Set browser window maximized, Spend 0.270491361618042 seconds
2019-10-30 11:25:53,137 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4916841983795166 seconds
2019-10-30 11:25:53,216 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07979536056518555 seconds
2019-10-30 11:25:53,254 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0359034538269043 seconds
2019-10-30 11:25:53,294 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989386558532715 seconds
2019-10-30 11:25:55,836 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5402531623840332 seconds
2019-10-30 11:25:57,165 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3184757232666016 seconds
2019-10-30 11:25:57,166 - root - INFO - 添加endpint
2019-10-30 11:25:57,429 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2622981071472168 seconds
2019-10-30 11:25:58,182 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.2501556873321533 seconds
2019-10-30 11:25:58,416 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.2323322296142578 seconds
2019-10-30 11:25:59,228 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.3110489845275879 seconds
2019-10-30 11:25:59,982 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.25112485885620117 seconds
2019-10-30 11:26:00,166 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.103:5000/v3, Spend 0.1825122833251953 seconds
2019-10-30 11:26:00,417 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.2503364086151123 seconds
2019-10-30 11:26:00,435 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.015955448150634766 seconds
2019-10-30 11:26:00,668 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.23233437538146973 seconds
2019-10-30 11:26:01,206 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.03490853309631348 seconds
2019-10-30 11:26:02,653 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4451251029968262 seconds
2019-10-30 11:26:02,654 - root - INFO - ############################### End ###############################
2019-10-30 11:26:46,593 - root - INFO - ############################### START ###############################
2019-10-30 11:26:55,945 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.350958824157715 seconds
2019-10-30 11:26:56,256 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30933451652526855 seconds
2019-10-30 11:26:56,763 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4946763515472412 seconds
2019-10-30 11:26:56,833 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07081365585327148 seconds
2019-10-30 11:26:56,879 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.044876813888549805 seconds
2019-10-30 11:26:56,928 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04787254333496094 seconds
2019-10-30 11:26:59,584 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6552174091339111 seconds
2019-10-30 11:27:00,941 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3463985919952393 seconds
2019-10-30 11:27:00,941 - root - INFO - 添加endpint
2019-10-30 11:27:01,193 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.25032901763916016 seconds
2019-10-30 11:27:02,063 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.36900925636291504 seconds
2019-10-30 11:27:02,296 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.22944116592407227 seconds
2019-10-30 11:27:03,110 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.31116199493408203 seconds
2019-10-30 11:27:03,875 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.2632482051849365 seconds
2019-10-30 11:27:04,020 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: https://192.168.54.136, Spend 0.14461374282836914 seconds
2019-10-30 11:27:04,252 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.23138046264648438 seconds
2019-10-30 11:27:04,258 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.0049877166748046875 seconds
2019-10-30 11:27:04,481 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.22240352630615234 seconds
2019-10-30 11:27:09,628 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.14457488059997559 seconds
2019-10-30 11:27:10,979 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3493828773498535 seconds
2019-10-30 11:27:10,980 - root - INFO - ############################### End ###############################
2019-10-30 11:27:10,995 - root - INFO - ############################### START ###############################
2019-10-30 11:27:20,233 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.237563848495483 seconds
2019-10-30 11:27:20,519 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28485918045043945 seconds
2019-10-30 11:27:21,033 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5096361637115479 seconds
2019-10-30 11:27:21,120 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.08676695823669434 seconds
2019-10-30 11:27:21,155 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03490638732910156 seconds
2019-10-30 11:27:21,202 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04588198661804199 seconds
2019-10-30 11:27:23,875 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6712000370025635 seconds
2019-10-30 11:27:25,263 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3793120384216309 seconds
2019-10-30 11:27:25,264 - root - INFO - 添加endpint
2019-10-30 11:27:25,518 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2523193359375 seconds
2019-10-30 11:27:26,285 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.2652876377105713 seconds
2019-10-30 11:27:26,517 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.2313847541809082 seconds
2019-10-30 11:27:27,277 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.2583012580871582 seconds
2019-10-30 11:27:28,057 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.277263879776001 seconds
2019-10-30 11:27:28,218 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.103:5000/v3, Spend 0.16156387329101562 seconds
2019-10-30 11:27:28,452 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.23237872123718262 seconds
2019-10-30 11:27:28,462 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.008970975875854492 seconds
2019-10-30 11:27:28,684 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2214069366455078 seconds
2019-10-30 11:27:29,200 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.013959169387817383 seconds
2019-10-30 11:27:30,522 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3224570751190186 seconds
2019-10-30 11:27:30,523 - root - INFO - ############################### End ###############################
2019-10-30 11:27:43,510 - root - INFO - ############################### START ###############################
2019-10-30 11:27:52,805 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.294112920761108 seconds
2019-10-30 11:27:53,076 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2698066234588623 seconds
2019-10-30 11:27:53,599 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5087709426879883 seconds
2019-10-30 11:27:53,679 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07978606224060059 seconds
2019-10-30 11:27:53,720 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.039891958236694336 seconds
2019-10-30 11:27:53,766 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04388117790222168 seconds
2019-10-30 11:27:56,307 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5405149459838867 seconds
2019-10-30 11:27:57,717 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.4022507667541504 seconds
2019-10-30 11:27:57,718 - root - INFO - 删除endpint
2019-10-30 11:27:57,970 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.25032973289489746 seconds
2019-10-30 11:27:58,786 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.31511425971984863 seconds
2019-10-30 11:27:59,090 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.3002002239227295 seconds
2019-10-30 11:27:59,958 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.3659780025482178 seconds
2019-10-30 11:28:00,755 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.29404616355895996 seconds
2019-10-30 11:28:01,005 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.25032520294189453 seconds
2019-10-30 11:28:01,013 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.007979154586791992 seconds
2019-10-30 11:28:01,242 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.22744131088256836 seconds
2019-10-30 11:28:04,329 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.08474087715148926 seconds
2019-10-30 11:28:05,730 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4002556800842285 seconds
2019-10-30 11:28:05,730 - root - INFO - ############################### End ###############################
2019-10-30 11:29:20,851 - root - INFO - ############################### START ###############################
2019-10-30 11:29:30,189 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.33703064918518 seconds
2019-10-30 11:29:30,462 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27228379249572754 seconds
2019-10-30 11:29:30,971 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4959125518798828 seconds
2019-10-30 11:29:31,053 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.08078265190124512 seconds
2019-10-30 11:29:31,090 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0359039306640625 seconds
2019-10-30 11:29:31,136 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.045877933502197266 seconds
2019-10-30 11:29:33,824 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6861388683319092 seconds
2019-10-30 11:29:35,157 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3244578838348389 seconds
2019-10-30 11:29:35,159 - root - INFO - 删除endpint
2019-10-30 11:29:35,411 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.251326322555542 seconds
2019-10-30 11:29:36,234 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.3211355209350586 seconds
2019-10-30 11:29:36,463 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.22838807106018066 seconds
2019-10-30 11:29:37,209 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.2450876235961914 seconds
2019-10-30 11:29:37,972 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.2601306438446045 seconds
2019-10-30 11:29:38,205 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.23143219947814941 seconds
2019-10-30 11:29:38,248 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.03988337516784668 seconds
2019-10-30 11:29:38,481 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2314131259918213 seconds
2019-10-30 11:29:43,507 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.023748159408569336 seconds
2019-10-30 11:29:45,525 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 2.0186009407043457 seconds
2019-10-30 11:29:45,526 - root - INFO - ############################### End ###############################
2019-10-30 11:39:36,329 - root - INFO - ############################### START ###############################
2019-10-30 11:39:45,715 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.384905338287354 seconds
2019-10-30 11:39:45,989 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2726871967315674 seconds
2019-10-30 11:39:46,510 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.501610279083252 seconds
2019-10-30 11:39:46,581 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.0688161849975586 seconds
2019-10-30 11:39:46,619 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03789877891540527 seconds
2019-10-30 11:39:46,657 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.036902427673339844 seconds
2019-10-30 11:39:49,310 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6512575149536133 seconds
2019-10-30 11:39:51,061 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.7413442134857178 seconds
2019-10-30 11:39:51,063 - root - INFO - 添加endpint
2019-10-30 11:39:51,300 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.23432660102844238 seconds
2019-10-30 11:39:52,111 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.3092195987701416 seconds
2019-10-30 11:39:52,369 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.25734806060791016 seconds
2019-10-30 11:39:53,136 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.2652914524078369 seconds
2019-10-30 11:39:53,895 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.2560703754425049 seconds
2019-10-30 11:39:54,050 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: https://192.168.54.136, Spend 0.1545884609222412 seconds
2019-10-30 11:39:54,303 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.25229358673095703 seconds
2019-10-30 11:39:54,309 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.005983591079711914 seconds
2019-10-30 11:39:59,653 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.3429725170135498 seconds
2019-10-30 11:40:04,728 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.0726621150970459 seconds
2019-10-30 11:40:05,841 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.112020492553711 seconds
2019-10-30 11:40:05,842 - root - INFO - ############################### End ###############################
2019-10-30 11:40:35,652 - root - INFO - ############################### START ###############################
2019-10-30 11:40:45,539 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.885561466217041 seconds
2019-10-30 11:40:45,841 - root - INFO - SUCCESS Set browser window maximized, Spend 0.29923486709594727 seconds
2019-10-30 11:40:46,379 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5001492500305176 seconds
2019-10-30 11:40:46,453 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07180929183959961 seconds
2019-10-30 11:40:46,497 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04388070106506348 seconds
2019-10-30 11:40:46,536 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0388951301574707 seconds
2019-10-30 11:40:49,090 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5515294075012207 seconds
2019-10-30 11:40:50,443 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3424105644226074 seconds
2019-10-30 11:40:50,444 - root - INFO - 添加endpint
2019-10-30 11:40:50,694 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.24933147430419922 seconds
2019-10-30 11:40:51,449 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.25304388999938965 seconds
2019-10-30 11:40:51,674 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.22339415550231934 seconds
2019-10-30 11:40:52,459 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.2822856903076172 seconds
2019-10-30 11:40:53,216 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.25513482093811035 seconds
2019-10-30 11:40:53,377 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.103:5000/v3, Spend 0.16156768798828125 seconds
2019-10-30 11:40:53,617 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.23935961723327637 seconds
2019-10-30 11:40:53,664 - root - INFO - SUCCESS Get element text element: <xpath->//table[@id='accessPoint']/tbody/tr[2]>, Spend 0.04587745666503906 seconds
2019-10-30 11:40:54,637 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 0.9729065895080566 seconds
2019-10-30 11:40:54,638 - root - INFO - ############################### End ###############################
2019-10-30 11:41:34,509 - root - INFO - ############################### START ###############################
2019-10-30 11:41:43,351 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.841322898864746 seconds
2019-10-30 11:41:43,626 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27526044845581055 seconds
2019-10-30 11:41:44,171 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5296714305877686 seconds
2019-10-30 11:41:44,245 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07280731201171875 seconds
2019-10-30 11:41:44,284 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03789925575256348 seconds
2019-10-30 11:41:44,324 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.039891719818115234 seconds
2019-10-30 11:41:46,924 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5993854999542236 seconds
2019-10-30 11:41:48,282 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3483951091766357 seconds
2019-10-30 11:41:48,283 - root - INFO - 删除endpint
2019-10-30 11:41:48,539 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.25532054901123047 seconds
2019-10-30 11:41:49,327 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.28617382049560547 seconds
2019-10-30 11:41:49,556 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.2274003028869629 seconds
2019-10-30 11:41:50,411 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.35193514823913574 seconds
2019-10-30 11:41:51,211 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.29617929458618164 seconds
2019-10-30 11:41:51,511 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.298236608505249 seconds
2019-10-30 11:41:56,595 - root - INFO - FAIL Element: <xpath->//table[@id='accessPoint']/tbody/tr[2]> is not exist, Spend 5.082619905471802 seconds
2019-10-30 11:41:57,703 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.107003927230835 seconds
2019-10-30 11:41:57,704 - root - INFO - ############################### End ###############################
2019-10-30 11:41:57,705 - root - INFO - ############################### START ###############################
2019-10-30 11:42:06,958 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.25222635269165 seconds
2019-10-30 11:42:07,223 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26381397247314453 seconds
2019-10-30 11:42:07,712 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48666906356811523 seconds
2019-10-30 11:42:07,786 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07180976867675781 seconds
2019-10-30 11:42:07,831 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.043885231018066406 seconds
2019-10-30 11:42:07,874 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.042882680892944336 seconds
2019-10-30 11:42:10,457 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5802657604217529 seconds
2019-10-30 11:42:11,806 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3424100875854492 seconds
2019-10-30 11:42:11,807 - root - INFO - 删除endpint
2019-10-30 11:42:12,064 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.25531744956970215 seconds
2019-10-30 11:42:12,816 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.25032472610473633 seconds
2019-10-30 11:42:13,037 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.2214059829711914 seconds
2019-10-30 11:42:13,893 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.35404086112976074 seconds
2019-10-30 11:42:14,626 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.23232412338256836 seconds
2019-10-30 11:42:14,852 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.22539925575256348 seconds
2019-10-30 11:42:19,932 - root - INFO - FAIL Element: <xpath->//table[@id='accessPoint']/tbody/tr[2]> is not exist, Spend 5.078479528427124 seconds
2019-10-30 11:42:21,151 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2196969985961914 seconds
2019-10-30 11:42:21,152 - root - INFO - ############################### End ###############################
2019-10-30 11:45:09,491 - root - INFO - ############################### START ###############################
2019-10-30 11:45:19,302 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.80873966217041 seconds
2019-10-30 11:45:19,581 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2792539596557617 seconds
2019-10-30 11:45:20,086 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.49127984046936035 seconds
2019-10-30 11:45:20,165 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.0777883529663086 seconds
2019-10-30 11:45:20,203 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.036900997161865234 seconds
2019-10-30 11:45:20,242 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789854049682617 seconds
2019-10-30 11:45:22,834 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5902068614959717 seconds
2019-10-30 11:45:24,471 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.6266510486602783 seconds
2019-10-30 11:45:24,471 - root - INFO - 删除服务
2019-10-30 11:45:24,705 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.23337435722351074 seconds
2019-10-30 11:45:25,520 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.31316614151000977 seconds
2019-10-30 11:45:25,788 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.2663280963897705 seconds
2019-10-30 11:45:26,625 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.33411574363708496 seconds
2019-10-30 11:45:27,356 - root - INFO - SUCCESS Clicked element: <xpath->//button[6]/i>, Spend 0.22736573219299316 seconds
2019-10-30 11:45:27,577 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.2204115390777588 seconds
2019-10-30 11:45:27,584 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.005991935729980469 seconds
2019-10-30 11:45:32,644 - root - INFO - FAIL Element: <xpath->(//a[contains(text(),'openstack_l_api')])> is not exist, Spend 5.057480812072754 seconds
2019-10-30 11:45:34,070 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4242229461669922 seconds
2019-10-30 11:45:34,070 - root - INFO - ############################### End ###############################
2019-10-30 11:45:34,071 - root - INFO - ############################### START ###############################
2019-10-30 11:45:43,849 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.777359962463379 seconds
2019-10-30 11:45:44,128 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27725863456726074 seconds
2019-10-30 11:45:44,694 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5626111030578613 seconds
2019-10-30 11:45:44,768 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07280802726745605 seconds
2019-10-30 11:45:44,807 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03789258003234863 seconds
2019-10-30 11:45:44,847 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989386558532715 seconds
2019-10-30 11:45:47,478 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6293103694915771 seconds
2019-10-30 11:45:48,841 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3523836135864258 seconds
2019-10-30 11:45:48,843 - root - INFO - 删除服务
2019-10-30 11:45:49,104 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2602989673614502 seconds
2019-10-30 11:45:49,861 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.2542414665222168 seconds
2019-10-30 11:45:50,088 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.22640275955200195 seconds
2019-10-30 11:45:50,958 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.263063907623291 seconds
2019-10-30 11:45:51,700 - root - INFO - SUCCESS Clicked element: <xpath->//button[6]/i>, Spend 0.24028515815734863 seconds
2019-10-30 11:45:51,925 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.22440767288208008 seconds
2019-10-30 11:45:51,942 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.01500082015991211 seconds
2019-10-30 11:45:57,004 - root - INFO - FAIL Element: <xpath->(//a[contains(text(),'vmware_api')])> is not exist, Spend 5.060582399368286 seconds
2019-10-30 11:45:58,057 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.0522136688232422 seconds
2019-10-30 11:45:58,058 - root - INFO - ############################### End ###############################
2019-10-30 11:48:27,725 - root - INFO - ############################### START ###############################
2019-10-30 11:48:37,025 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.297136068344116 seconds
2019-10-30 11:48:37,302 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27736926078796387 seconds
2019-10-30 11:48:37,799 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4807155132293701 seconds
2019-10-30 11:48:37,871 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.0718076229095459 seconds
2019-10-30 11:48:37,908 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03690052032470703 seconds
2019-10-30 11:48:37,951 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040891408920288086 seconds
2019-10-30 11:48:40,655 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7019739151000977 seconds
2019-10-30 11:48:41,996 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3404145240783691 seconds
2019-10-30 11:48:41,997 - root - INFO - 删除region
2019-10-30 11:48:42,254 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.2543160915374756 seconds
2019-10-30 11:48:42,997 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]>, Spend 0.24109649658203125 seconds
2019-10-30 11:48:43,718 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_auto_test01')]/parent::li//child::i>, Spend 0.21912693977355957 seconds
2019-10-30 11:48:44,463 - root - INFO - SUCCESS Clicked element: <xpath->//button[6]/i>, Spend 0.2443103790283203 seconds
2019-10-30 11:48:44,736 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.27227115631103516 seconds
2019-10-30 11:48:44,743 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.004988193511962891 seconds
2019-10-30 11:48:50,816 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 5.071435213088989 seconds
2019-10-30 11:48:52,091 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2736189365386963 seconds
2019-10-30 11:48:52,091 - root - INFO - ############################### End ###############################
2019-10-30 11:49:28,325 - root - INFO - ############################### START ###############################
2019-10-30 11:49:37,604 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.277189016342163 seconds
2019-10-30 11:49:37,870 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2652909755706787 seconds
2019-10-30 11:49:38,381 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4966409206390381 seconds
2019-10-30 11:49:38,455 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07280707359313965 seconds
2019-10-30 11:49:38,492 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03590130805969238 seconds
2019-10-30 11:49:38,532 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889608383178711 seconds
2019-10-30 11:49:41,213 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6801226139068604 seconds
2019-10-30 11:49:42,527 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.3134851455688477 seconds
2019-10-30 11:49:47,628 - root - INFO - FAIL Element: <xpath->//a[contains(text(),'wuzs_auto_test01')]> is not exist, Spend 5.099366664886475 seconds
2019-10-30 11:49:49,082 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4531495571136475 seconds
2019-10-30 11:49:49,083 - root - INFO - ############################### End ###############################
2019-10-30 20:07:03,416 - root - INFO - ############################### START ###############################
2019-10-30 20:08:19,335 - root - INFO - ############################### START ###############################
2019-10-30 20:08:31,489 - root - INFO - SUCCESS Start a new browser: firefox, Spend 12.154001235961914 seconds
2019-10-30 20:08:31,781 - root - INFO - SUCCESS Set browser window maximized, Spend 0.29122281074523926 seconds
2019-10-30 20:08:32,897 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.9589524269104004 seconds
2019-10-30 20:08:33,027 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.12864422798156738 seconds
2019-10-30 20:08:33,094 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.06482625007629395 seconds
2019-10-30 20:08:33,151 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05485391616821289 seconds
2019-10-30 20:08:35,782 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.629145622253418 seconds
2019-10-30 20:08:37,599 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.81614351272583 seconds
2019-10-30 20:08:37,947 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.3480668067932129 seconds
2019-10-30 20:08:37,977 - root - INFO - SUCCESS Get element text element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/td[3]/div>, Spend 0.028932809829711914 seconds
2019-10-30 20:08:40,046 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 2.069462537765503 seconds
2019-10-30 20:08:40,047 - root - INFO - ############################### End ###############################
2019-10-30 20:09:50,642 - root - INFO - ############################### START ###############################
2019-10-30 20:10:00,442 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.798789024353027 seconds
2019-10-30 20:10:00,708 - root - INFO - SUCCESS Set browser window maximized, Spend 0.264293909072876 seconds
2019-10-30 20:10:01,386 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6607468128204346 seconds
2019-10-30 20:10:01,543 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.15658068656921387 seconds
2019-10-30 20:10:01,577 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03394603729248047 seconds
2019-10-30 20:10:01,605 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.027404069900512695 seconds
2019-10-30 20:10:04,237 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6301302909851074 seconds
2019-10-30 20:10:05,943 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.7064378261566162 seconds
2019-10-30 20:10:06,218 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.2732667922973633 seconds
2019-10-30 20:10:06,247 - root - INFO - SUCCESS Get element text element: <xpath->//td[3]/div/span>, Spend 0.028920650482177734 seconds
2019-10-30 20:10:08,198 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.9499070644378662 seconds
2019-10-30 20:10:08,199 - root - INFO - ############################### End ###############################
2019-10-30 20:14:22,152 - root - INFO - ############################### START ###############################
2019-10-30 20:14:31,419 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.265185832977295 seconds
2019-10-30 20:14:31,701 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28078579902648926 seconds
2019-10-30 20:14:32,307 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5874300003051758 seconds
2019-10-30 20:14:32,386 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07878851890563965 seconds
2019-10-30 20:14:32,430 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04288601875305176 seconds
2019-10-30 20:14:32,478 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04787158966064453 seconds
2019-10-30 20:14:35,082 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.601163387298584 seconds
2019-10-30 20:14:36,735 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6515824794769287 seconds
2019-10-30 20:14:36,979 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.24335098266601562 seconds
2019-10-30 20:14:42,135 - root - INFO - FAIL Unable to get element text element: <xpath->//td[contains(.,'DC1')]/parent::div/parent::td/parent::tr/td[3]/div/span>, Spend 5.1554625034332275 seconds
2019-10-30 20:14:43,473 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3374204635620117 seconds
2019-10-30 20:14:43,474 - root - INFO - ############################### End ###############################
2019-10-30 20:19:35,482 - root - INFO - ############################### START ###############################
2019-10-30 20:19:45,268 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.785790920257568 seconds
2019-10-30 20:19:45,544 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2732682228088379 seconds
2019-10-30 20:19:46,256 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6911494731903076 seconds
2019-10-30 20:19:46,353 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.09526991844177246 seconds
2019-10-30 20:19:46,403 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.049150705337524414 seconds
2019-10-30 20:19:46,476 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.07167983055114746 seconds
2019-10-30 20:19:49,175 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6974635124206543 seconds
2019-10-30 20:19:50,964 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.7885830402374268 seconds
2019-10-30 20:19:51,288 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.3222174644470215 seconds
2019-10-30 20:19:56,348 - root - INFO - FAIL Unable to get element text element: <xpath->//td[contains(.,'DC1')]/preceding-slibling::td[3]>, Spend 5.058588743209839 seconds
2019-10-30 20:19:57,916 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.5678699016571045 seconds
2019-10-30 20:19:57,917 - root - INFO - ############################### End ###############################
2019-10-30 20:20:28,217 - root - INFO - ############################### START ###############################
2019-10-30 20:20:37,533 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.315050601959229 seconds
2019-10-30 20:20:37,800 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2666964530944824 seconds
2019-10-30 20:20:38,453 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6372790336608887 seconds
2019-10-30 20:20:38,535 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.08177995681762695 seconds
2019-10-30 20:20:38,575 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.037899017333984375 seconds
2019-10-30 20:20:38,621 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04587817192077637 seconds
2019-10-30 20:20:41,195 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5724573135375977 seconds
2019-10-30 20:20:42,921 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.7263836860656738 seconds
2019-10-30 20:20:43,153 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.23038077354431152 seconds
2019-10-30 20:20:43,204 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]>, Spend 0.05086469650268555 seconds
2019-10-30 20:20:43,224 - root - INFO - SUCCESS Get element text element: <xpath->//td[3]/div/span>, Spend 0.01798391342163086 seconds
2019-10-30 20:20:44,618 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3924624919891357 seconds
2019-10-30 20:20:44,618 - root - INFO - ############################### End ###############################
2019-10-30 20:24:24,538 - root - INFO - ############################### START ###############################
2019-10-30 20:24:33,824 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.285163879394531 seconds
2019-10-30 20:24:34,089 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26376891136169434 seconds
2019-10-30 20:24:34,628 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5185806751251221 seconds
2019-10-30 20:24:34,797 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.1685488224029541 seconds
2019-10-30 20:24:34,836 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03689980506896973 seconds
2019-10-30 20:24:34,878 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089045524597168 seconds
2019-10-30 20:24:37,502 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6212913990020752 seconds
2019-10-30 20:24:39,179 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6755104064941406 seconds
2019-10-30 20:24:39,412 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.23237895965576172 seconds
2019-10-30 20:24:44,435 - root - INFO - FAIL Unable to get element text element: <xpath->//td[contains(.,'DC1')]/following-sibling::td[3]>, Spend 5.0229222774505615 seconds
2019-10-30 20:24:45,966 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.5297908782958984 seconds
2019-10-30 20:24:45,966 - root - INFO - ############################### End ###############################
2019-10-30 20:26:28,666 - root - INFO - ############################### START ###############################
2019-10-30 20:26:38,453 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.785824060440063 seconds
2019-10-30 20:26:38,756 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30019593238830566 seconds
2019-10-30 20:26:39,464 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6722087860107422 seconds
2019-10-30 20:26:39,541 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07579660415649414 seconds
2019-10-30 20:26:39,579 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.037899017333984375 seconds
2019-10-30 20:26:39,623 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0438840389251709 seconds
2019-10-30 20:26:42,209 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5844354629516602 seconds
2019-10-30 20:26:43,853 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6416425704956055 seconds
2019-10-30 20:26:44,108 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.2552826404571533 seconds
2019-10-30 20:26:44,151 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/preceding-sibling::td[1]>, Spend 0.0418858528137207 seconds
2019-10-30 20:26:44,170 - root - INFO - SUCCESS Get element text element: <xpath->//td[3]/div/span>, Spend 0.016954660415649414 seconds
2019-10-30 20:26:45,482 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3114986419677734 seconds
2019-10-30 20:26:45,483 - root - INFO - ############################### End ###############################
2019-10-30 20:26:58,214 - root - INFO - ############################### START ###############################
2019-10-30 20:27:07,491 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.276045799255371 seconds
2019-10-30 20:27:07,763 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27091550827026367 seconds
2019-10-30 20:27:08,319 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5385377407073975 seconds
2019-10-30 20:27:08,498 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.17851495742797852 seconds
2019-10-30 20:27:08,539 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04089021682739258 seconds
2019-10-30 20:27:08,582 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04288601875305176 seconds
2019-10-30 20:27:11,260 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6771471500396729 seconds
2019-10-30 20:27:12,864 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6027121543884277 seconds
2019-10-30 20:27:13,202 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.3370983600616455 seconds
2019-10-30 20:27:18,228 - root - INFO - FAIL Unable to get element text element: <xpath->//td[contains(.,'DC1')]/preceding-sibling::td[2]>, Spend 5.025858640670776 seconds
2019-10-30 20:27:19,462 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2326836585998535 seconds
2019-10-30 20:27:19,464 - root - INFO - ############################### End ###############################
2019-10-30 20:27:38,247 - root - INFO - ############################### START ###############################
2019-10-30 20:27:48,075 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.827876567840576 seconds
2019-10-30 20:27:48,346 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26927804946899414 seconds
2019-10-30 20:27:48,967 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6023986339569092 seconds
2019-10-30 20:27:49,071 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.10173249244689941 seconds
2019-10-30 20:27:49,118 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04687976837158203 seconds
2019-10-30 20:27:49,165 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.045876264572143555 seconds
2019-10-30 20:27:51,766 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5993900299072266 seconds
2019-10-30 20:27:53,382 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6156775951385498 seconds
2019-10-30 20:27:53,635 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.25232529640197754 seconds
2019-10-30 20:27:58,672 - root - INFO - FAIL Unable to get element text element: <xpath->//td[contains(.,'DC1')]/preceding-sibling::td[2]/div/span>, Spend 5.036537170410156 seconds
2019-10-30 20:28:00,137 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.464484691619873 seconds
2019-10-30 20:28:00,137 - root - INFO - ############################### End ###############################
2019-10-30 20:28:17,667 - root - INFO - ############################### START ###############################
2019-10-30 20:28:26,965 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.296135187149048 seconds
2019-10-30 20:28:27,232 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2657320499420166 seconds
2019-10-30 20:28:27,808 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.555516242980957 seconds
2019-10-30 20:28:27,883 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07380008697509766 seconds
2019-10-30 20:28:27,925 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04188847541809082 seconds
2019-10-30 20:28:27,970 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.042885780334472656 seconds
2019-10-30 20:28:30,590 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6173379421234131 seconds
2019-10-30 20:28:32,223 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6326308250427246 seconds
2019-10-30 20:28:32,457 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.23337554931640625 seconds
2019-10-30 20:28:37,493 - root - INFO - FAIL Unable to get element text element: <xpath->//td[contains(.,'DC1')]/preceding-sibling::td[2]/child::div/child::span>, Spend 5.03472113609314 seconds
2019-10-30 20:28:39,418 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.9248368740081787 seconds
2019-10-30 20:28:39,419 - root - INFO - ############################### End ###############################
2019-10-30 20:29:44,491 - root - INFO - ############################### START ###############################
2019-10-30 20:29:53,789 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.29613709449768 seconds
2019-10-30 20:29:54,061 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27032470703125 seconds
2019-10-30 20:29:54,682 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5864331722259521 seconds
2019-10-30 20:29:54,770 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.08776497840881348 seconds
2019-10-30 20:29:54,810 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03889942169189453 seconds
2019-10-30 20:29:54,855 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04487895965576172 seconds
2019-10-30 20:29:57,444 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.586188793182373 seconds
2019-10-30 20:29:59,111 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6665418148040771 seconds
2019-10-30 20:29:59,356 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.244384765625 seconds
2019-10-30 20:29:59,388 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.02991771697998047 seconds
2019-10-30 20:29:59,408 - root - INFO - SUCCESS Get element text element: <xpath->//td[3]/div/span>, Spend 0.01900196075439453 seconds
2019-10-30 20:30:00,647 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2386937141418457 seconds
2019-10-30 20:30:00,648 - root - INFO - ############################### End ###############################

View File

@ -1,859 +0,0 @@
2019-10-31 09:13:09,295 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.827036380767822 seconds
2019-10-31 09:13:09,950 - root - INFO - SUCCESS Navigated to file:///C:/Users/wuzs/Desktop/test.html, Spend 0.6542487144470215 seconds
2019-10-31 09:13:14,976 - root - INFO - FAIL Unable to get element text element: <xpath->//table/tr[1]>, Spend 5.025718927383423 seconds
2019-10-31 09:13:56,086 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.309099435806274 seconds
2019-10-31 09:13:56,672 - root - INFO - SUCCESS Navigated to file:///C:/Users/wuzs/Desktop/test.html, Spend 0.5854318141937256 seconds
2019-10-31 09:14:01,700 - root - INFO - FAIL Unable to get element text element: <xpath->//table/tr[1]/th[1]>, Spend 5.026658058166504 seconds
2019-10-31 09:14:49,793 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.793476343154907 seconds
2019-10-31 09:14:50,276 - root - INFO - SUCCESS Navigated to file:///C:/Users/wuzs/Desktop/test.html, Spend 0.4833869934082031 seconds
2019-10-31 09:14:50,301 - root - INFO - SUCCESS Get element text element: <xpath->//table/tbody/tr[1]/th[1]>, Spend 0.024932861328125 seconds
2019-10-31 09:30:49,091 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.30107831954956 seconds
2019-10-31 09:30:49,376 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28321361541748047 seconds
2019-10-31 09:30:49,842 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.46471166610717773 seconds
2019-10-31 09:30:50,015 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.17253756523132324 seconds
2019-10-31 09:30:50,043 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.025929689407348633 seconds
2019-10-31 09:30:50,070 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.025931358337402344 seconds
2019-10-31 09:30:51,294 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.721959114074707 seconds
2019-10-31 09:30:52,705 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 1.4101850986480713 seconds
2019-10-31 09:30:57,747 - root - INFO - FAIL Unable to click element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 5.03952431678772 seconds
2019-10-31 09:31:24,331 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.303080320358276 seconds
2019-10-31 09:31:24,604 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2723228931427002 seconds
2019-10-31 09:31:25,199 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5943601131439209 seconds
2019-10-31 09:31:25,276 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_auto_0001, Spend 0.07679438591003418 seconds
2019-10-31 09:31:25,322 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.044878482818603516 seconds
2019-10-31 09:31:25,363 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989386558532715 seconds
2019-10-31 09:31:26,470 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6052141189575195 seconds
2019-10-31 09:31:28,179 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 1.707432508468628 seconds
2019-10-31 09:31:28,420 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.2403569221496582 seconds
2019-10-31 09:31:28,651 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.23034906387329102 seconds
2019-10-31 09:31:28,891 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.23734426498413086 seconds
2019-10-31 09:31:29,561 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: wuzs_auto_0001,and sleep 0.5 seconds,input ENTER key, Spend 0.6691744327545166 seconds
2019-10-31 09:31:29,816 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'移除')]>, Spend 0.25331997871398926 seconds
2019-10-31 09:31:30,052 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(@href, '#')])[2]>, Spend 0.23334622383117676 seconds
2019-10-31 09:31:34,001 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.9487371444702148 seconds
2019-10-31 09:31:57,047 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.834669351577759 seconds
2019-10-31 09:31:57,359 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3111610412597656 seconds
2019-10-31 09:31:57,838 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.47922682762145996 seconds
2019-10-31 09:31:57,898 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05884099006652832 seconds
2019-10-31 09:31:57,941 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04188871383666992 seconds
2019-10-31 09:31:57,981 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989362716674805 seconds
2019-10-31 09:31:59,179 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.69693922996521 seconds
2019-10-31 09:32:00,836 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 1.6555700302124023 seconds
2019-10-31 09:32:01,118 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.28025126457214355 seconds
2019-10-31 09:32:01,355 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.23533892631530762 seconds
2019-10-31 09:32:01,594 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.23836278915405273 seconds
2019-10-31 09:32:02,226 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: wuzs_auto_0001,and sleep 0.5 seconds,input ENTER key, Spend 0.6313107013702393 seconds
2019-10-31 09:32:02,483 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'移除')]>, Spend 0.25531554222106934 seconds
2019-10-31 09:32:02,707 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(@href, '#')])[2]>, Spend 0.22440052032470703 seconds
2019-10-31 09:32:05,988 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2793893814086914 seconds
2019-10-31 09:35:37,195 - root - INFO - ############################### START ###############################
2019-10-31 09:35:46,035 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.83832335472107 seconds
2019-10-31 09:35:46,337 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30222368240356445 seconds
2019-10-31 09:35:46,817 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.47975826263427734 seconds
2019-10-31 09:35:46,877 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05884385108947754 seconds
2019-10-31 09:35:46,918 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03889656066894531 seconds
2019-10-31 09:35:46,958 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889727592468262 seconds
2019-10-31 09:35:48,157 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6981337070465088 seconds
2019-10-31 09:35:50,003 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 1.6366281509399414 seconds
2019-10-31 09:35:50,297 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'河南分公司')]>, Spend 0.2922539710998535 seconds
2019-10-31 09:35:50,540 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2423858642578125 seconds
2019-10-31 09:35:50,787 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.24530553817749023 seconds
2019-10-31 09:35:51,462 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: wuzs_auto_0001,and sleep 0.5 seconds,input ENTER key, Spend 0.67323899269104 seconds
2019-10-31 09:35:51,715 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'移除')]>, Spend 0.25228261947631836 seconds
2019-10-31 09:35:51,942 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(@href, '#')])[2]>, Spend 0.22643065452575684 seconds
2019-10-31 09:35:51,951 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 0.008942365646362305 seconds
2019-10-31 09:35:52,631 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_auto_0001,and sleep 0.5 seconds,input ENTER key, Spend 0.6791818141937256 seconds
2019-10-31 09:35:54,655 - root - INFO - SUCCESS Get element text element: <css->.ng-scope:nth-child(4) > .wordBreak>, Spend 0.022706985473632812 seconds
2019-10-31 09:35:56,052 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3962376117706299 seconds
2019-10-31 09:35:56,053 - root - INFO - ############################### End ###############################
2019-10-31 10:39:13,404 - root - INFO - ############################### START ###############################
2019-10-31 10:39:22,724 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.318943500518799 seconds
2019-10-31 10:39:23,015 - root - INFO - SUCCESS Set browser window maximized, Spend 0.29122304916381836 seconds
2019-10-31 10:39:23,647 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6304781436920166 seconds
2019-10-31 10:39:23,710 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.061833858489990234 seconds
2019-10-31 10:39:23,755 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04387784004211426 seconds
2019-10-31 10:39:23,793 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789877891540527 seconds
2019-10-31 10:39:24,983 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6870987415313721 seconds
2019-10-31 10:39:26,719 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 1.7114219665527344 seconds
2019-10-31 10:39:26,852 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/button>, Spend 0.13260960578918457 seconds
2019-10-31 10:39:27,131 - root - INFO - SUCCESS Clicked element: <xpath->/html/body/app-component/div[1]/main-component/div/div/manage-component/div/div/div/div[1]/div/div[2]/form/div[1]/div[1]/div/div/button[2]>, Spend 0.27821993827819824 seconds
2019-10-31 10:39:27,372 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海')]>, Spend 0.2383270263671875 seconds
2019-10-31 10:39:27,486 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='username'])[2]> content: 上海管理员, Spend 0.11465024948120117 seconds
2019-10-31 10:39:27,570 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='firstname'])[2]> content: wuzushun, Spend 0.0827779769897461 seconds
2019-10-31 10:39:27,644 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='password'])[2]> content: 1qaz!QAZ, Spend 0.07280516624450684 seconds
2019-10-31 10:39:27,745 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='_repassword'])[2]> content: 1qaz!QAZ, Spend 0.09973359107971191 seconds
2019-10-31 10:39:27,834 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='email'])[2]> content: wuzs@193.om, Spend 0.08776473999023438 seconds
2019-10-31 10:39:28,184 - root - INFO - SUCCESS Clicked element: <xpath->//form/div[2]/div/div/button>, Spend 0.34906840324401855 seconds
2019-10-31 10:39:28,970 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: 上海管理员,and sleep 0.5 seconds,input ENTER key, Spend 0.7849385738372803 seconds
2019-10-31 10:39:29,995 - root - INFO - SUCCESS Element: <xpath->//span[contains(.,'上海管理员')]> is exist, Spend 1.0232326984405518 seconds
2019-10-31 10:39:31,082 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.0840961933135986 seconds
2019-10-31 10:39:31,082 - root - INFO - ############################### End ###############################
2019-10-31 10:39:38,037 - root - INFO - ############################### START ###############################
2019-10-31 10:39:47,846 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.80776309967041 seconds
2019-10-31 10:39:48,130 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2832450866699219 seconds
2019-10-31 10:39:48,622 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.49065256118774414 seconds
2019-10-31 10:39:48,684 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06183505058288574 seconds
2019-10-31 10:39:48,726 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.039893388748168945 seconds
2019-10-31 10:39:48,766 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889632225036621 seconds
2019-10-31 10:39:49,932 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6652207374572754 seconds
2019-10-31 10:39:51,602 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 1.6475927829742432 seconds
2019-10-31 10:39:51,924 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海分公司')]>, Spend 0.32111430168151855 seconds
2019-10-31 10:39:52,174 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.24828505516052246 seconds
2019-10-31 10:39:52,462 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2852330207824707 seconds
2019-10-31 10:39:52,859 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.39490222930908203 seconds
2019-10-31 10:39:52,870 - root - INFO - FAIL Unable element <xpath->(//input[@type='search'])[5]> type content: 上海管理员,and sleep 0.5 seconds,input ENTER key, Spend 0.010958194732666016 seconds
2019-10-31 10:39:54,057 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.185828685760498 seconds
2019-10-31 10:39:54,057 - root - INFO - ############################### End ###############################
2019-10-31 10:40:12,053 - root - INFO - ############################### START ###############################
2019-10-31 10:40:21,390 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.336023807525635 seconds
2019-10-31 10:40:21,670 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2773115634918213 seconds
2019-10-31 10:40:22,151 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.47971129417419434 seconds
2019-10-31 10:40:22,205 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05285286903381348 seconds
2019-10-31 10:40:22,239 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.0328981876373291 seconds
2019-10-31 10:40:22,263 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.02292919158935547 seconds
2019-10-31 10:40:23,462 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6971297264099121 seconds
2019-10-31 10:40:25,090 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 1.6066925525665283 seconds
2019-10-31 10:40:25,367 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海分公司')]>, Spend 0.27526426315307617 seconds
2019-10-31 10:40:25,610 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2413947582244873 seconds
2019-10-31 10:40:25,906 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.2942061424255371 seconds
2019-10-31 10:40:26,195 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.28926825523376465 seconds
2019-10-31 10:40:26,205 - root - INFO - FAIL Unable element <xpath->(//input[@type='search'])[5]> type content: 上海管理员,and sleep 0.5 seconds,input ENTER key, Spend 0.009942293167114258 seconds
2019-10-31 10:40:27,556 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3486049175262451 seconds
2019-10-31 10:40:27,556 - root - INFO - ############################### End ###############################
2019-10-31 10:41:08,183 - root - INFO - ############################### START ###############################
2019-10-31 10:41:17,505 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.320398092269897 seconds
2019-10-31 10:41:17,786 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28025007247924805 seconds
2019-10-31 10:41:18,308 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5196681022644043 seconds
2019-10-31 10:41:18,387 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.07879137992858887 seconds
2019-10-31 10:41:18,436 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.04787731170654297 seconds
2019-10-31 10:41:18,481 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.043883562088012695 seconds
2019-10-31 10:41:19,638 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6550590991973877 seconds
2019-10-31 10:41:21,265 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_morgMgr, Spend 1.6037101745605469 seconds
2019-10-31 10:41:21,544 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海分公司')]>, Spend 0.27730703353881836 seconds
2019-10-31 10:41:21,825 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'通用岗位1')]>, Spend 0.2802398204803467 seconds
2019-10-31 10:41:22,140 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'用户')]>, Spend 0.26927995681762695 seconds
2019-10-31 10:41:22,444 - root - INFO - SUCCESS Clicked element: <css->.yellow>, Spend 0.3021585941314697 seconds
2019-10-31 10:41:25,117 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[5]> type content: 上海管理员,and sleep 0.5 seconds,input ENTER key, Spend 0.672196626663208 seconds
2019-10-31 10:41:27,369 - root - INFO - SUCCESS Clicked element: <xpath->//div[@id='addUserModal']/div[2]/div/div/form/table-component/div/table/tbody/tr/td[1]/div/span/input[@type='radio']>, Spend 0.25032782554626465 seconds
2019-10-31 10:41:27,638 - root - INFO - SUCCESS Clicked element: <xpath -> //div[@id='addUserModal']/div[@class='modal-footer']/button[@class='btn btn-warning']>, Spend 0.26723504066467285 seconds
2019-10-31 10:41:27,649 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 0.011002302169799805 seconds
2019-10-31 10:41:28,349 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: 上海管理员,and sleep 0.5 seconds,input ENTER key, Spend 0.6991307735443115 seconds
2019-10-31 10:41:30,385 - root - INFO - SUCCESS Get element text element: <css->.ng-scope:nth-child(4) > .wordBreak>, Spend 0.03474020957946777 seconds
2019-10-31 10:41:31,600 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2137532234191895 seconds
2019-10-31 10:41:31,600 - root - INFO - ############################### End ###############################
2019-10-31 10:42:40,105 - root - INFO - ############################### START ###############################
2019-10-31 10:42:48,925 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.817564010620117 seconds
2019-10-31 10:42:49,194 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2682833671569824 seconds
2019-10-31 10:42:49,751 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.542238712310791 seconds
2019-10-31 10:42:49,805 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05285453796386719 seconds
2019-10-31 10:42:49,849 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04288482666015625 seconds
2019-10-31 10:42:49,886 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0359039306640625 seconds
2019-10-31 10:42:50,962 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5744211673736572 seconds
2019-10-31 10:42:52,539 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.576780080795288 seconds
2019-10-31 10:42:52,634 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.09376811981201172 seconds
2019-10-31 10:42:52,781 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_test, Spend 0.14658784866333008 seconds
2019-10-31 10:42:52,855 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.07380294799804688 seconds
2019-10-31 10:42:52,947 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 15138961701, Spend 0.08975911140441895 seconds
2019-10-31 10:42:54,201 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.252213716506958 seconds
2019-10-31 10:42:54,219 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.017902851104736328 seconds
2019-10-31 10:42:54,883 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_test,and sleep 0.5 seconds,input ENTER key, Spend 0.6612310409545898 seconds
2019-10-31 10:42:59,940 - root - INFO - FAIL Unable to get element text element: <id->card>, Spend 5.056635141372681 seconds
2019-10-31 10:43:01,135 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1947605609893799 seconds
2019-10-31 10:43:01,136 - root - INFO - ############################### End ###############################
2019-10-31 10:43:20,604 - root - INFO - ############################### START ###############################
2019-10-31 10:43:30,475 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.8686203956604 seconds
2019-10-31 10:43:30,750 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2713284492492676 seconds
2019-10-31 10:43:31,288 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48979926109313965 seconds
2019-10-31 10:43:31,346 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.0578460693359375 seconds
2019-10-31 10:43:31,390 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04288506507873535 seconds
2019-10-31 10:43:31,429 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.036904335021972656 seconds
2019-10-31 10:43:32,590 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6592366695404053 seconds
2019-10-31 10:43:33,760 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.169877052307129 seconds
2019-10-31 10:43:33,876 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.11469173431396484 seconds
2019-10-31 10:43:34,168 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_test, Spend 0.29121971130371094 seconds
2019-10-31 10:43:34,252 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.08477473258972168 seconds
2019-10-31 10:43:34,347 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 15138961701, Spend 0.09275174140930176 seconds
2019-10-31 10:43:36,072 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.7228348255157471 seconds
2019-10-31 10:43:36,118 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.0428318977355957 seconds
2019-10-31 10:43:36,835 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_test,and sleep 0.5 seconds,input ENTER key, Spend 0.7160332202911377 seconds
2019-10-31 10:43:36,970 - root - INFO - SUCCESS Get element text element: <id->card>, Spend 0.1345841884613037 seconds
2019-10-31 10:43:38,263 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.292586326599121 seconds
2019-10-31 10:43:38,263 - root - INFO - ############################### End ###############################
2019-10-31 10:43:59,055 - root - INFO - ############################### START ###############################
2019-10-31 10:44:08,361 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.305153608322144 seconds
2019-10-31 10:44:08,667 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30518460273742676 seconds
2019-10-31 10:44:09,231 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5387132167816162 seconds
2019-10-31 10:44:09,296 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.06482505798339844 seconds
2019-10-31 10:44:09,334 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0359036922454834 seconds
2019-10-31 10:44:09,358 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.02393651008605957 seconds
2019-10-31 10:44:10,474 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6133568286895752 seconds
2019-10-31 10:44:11,730 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.2546594142913818 seconds
2019-10-31 10:44:11,850 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.11866307258605957 seconds
2019-10-31 10:44:12,112 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_test_path21, Spend 0.26129889488220215 seconds
2019-10-31 10:44:12,161 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.04787302017211914 seconds
2019-10-31 10:44:12,243 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 15138961701, Spend 0.08078455924987793 seconds
2019-10-31 10:44:13,542 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.29918789863586426 seconds
2019-10-31 10:44:13,552 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.007954597473144531 seconds
2019-10-31 10:44:14,277 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_test_path21,and sleep 0.5 seconds,input ENTER key, Spend 0.7234299182891846 seconds
2019-10-31 10:44:14,290 - root - INFO - FAIL Unable to get element text element: <id->card>, Spend 0.01396322250366211 seconds
2019-10-31 10:44:15,307 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.014286756515503 seconds
2019-10-31 10:44:15,307 - root - INFO - ############################### End ###############################
2019-10-31 10:44:29,816 - root - INFO - ############################### START ###############################
2019-10-31 10:44:39,111 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.293753623962402 seconds
2019-10-31 10:44:39,385 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2742743492126465 seconds
2019-10-31 10:44:39,891 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.49268460273742676 seconds
2019-10-31 10:44:39,944 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.051857709884643555 seconds
2019-10-31 10:44:39,982 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03690171241760254 seconds
2019-10-31 10:44:40,009 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.025928020477294922 seconds
2019-10-31 10:44:41,101 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5903911590576172 seconds
2019-10-31 10:44:42,483 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.3803081512451172 seconds
2019-10-31 10:44:42,602 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'新建运营部门')]>, Spend 0.11768579483032227 seconds
2019-10-31 10:44:42,894 - root - INFO - SUCCESS Clear and type element: <name->tenantName> content: wuzs_test_path21, Spend 0.2901952266693115 seconds
2019-10-31 10:44:42,945 - root - INFO - SUCCESS Clear and type element: <name->contact> content: wzs, Spend 0.04986381530761719 seconds
2019-10-31 10:44:43,005 - root - INFO - SUCCESS Clear and type element: <name->phoneNo> content: 15138961701, Spend 0.05884218215942383 seconds
2019-10-31 10:44:44,763 - root - INFO - SUCCESS Clicked element: <xpath->//button[@type='submit']>, Spend 0.7558286190032959 seconds
2019-10-31 10:44:44,799 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.031915903091430664 seconds
2019-10-31 10:44:45,517 - root - INFO - SUCCESS Element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_test_path21,and sleep 0.5 seconds,input ENTER key, Spend 0.7160732746124268 seconds
2019-10-31 10:44:45,669 - root - INFO - SUCCESS Get element text element: <id->card>, Spend 0.15057373046875 seconds
2019-10-31 10:44:48,887 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 3.2183594703674316 seconds
2019-10-31 10:44:48,888 - root - INFO - ############################### End ###############################
2019-10-31 10:45:54,871 - root - INFO - ############################### START ###############################
2019-10-31 10:46:04,320 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.446725845336914 seconds
2019-10-31 10:46:04,582 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2613039016723633 seconds
2019-10-31 10:46:05,097 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5016627311706543 seconds
2019-10-31 10:46:05,152 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05385446548461914 seconds
2019-10-31 10:46:05,202 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04886960983276367 seconds
2019-10-31 10:46:05,240 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.037901878356933594 seconds
2019-10-31 10:46:06,390 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6482610702514648 seconds
2019-10-31 10:46:07,754 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 1.3633179664611816 seconds
2019-10-31 10:46:07,877 - root - INFO - SUCCESS Clicked element: <xpath->//div[5]/button/i>, Spend 0.12267446517944336 seconds
2019-10-31 10:46:08,284 - root - INFO - SUCCESS Clicked element: <xpath->//span[contains(.,'请选择运营部门')]>, Spend 0.4059133529663086 seconds
2019-10-31 10:46:08,915 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: wuzs_test_path21,and sleep 0.5 seconds,input ENTER key, Spend 0.6303155422210693 seconds
2019-10-31 10:46:09,182 - root - INFO - SUCCESS Clicked element: <xpath->//div[3]/div/div/button[2]/i>, Spend 0.26533007621765137 seconds
2019-10-31 10:46:09,434 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'wuzs_test_path21')]>, Spend 0.2502913475036621 seconds
2019-10-31 10:46:09,520 - root - INFO - SUCCESS Clear and type element: <name->projectName> content: path21, Spend 0.08474564552307129 seconds
2019-10-31 10:46:09,580 - root - INFO - SUCCESS Clear and type element: <name->projectDescription> content: ui自动化, Spend 0.058843135833740234 seconds
2019-10-31 10:46:09,726 - root - INFO - SUCCESS Clicked element: <xpath->(//button[@type='button'])[10]>, Spend 0.14461374282836914 seconds
2019-10-31 10:46:09,749 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/projects, Spend 0.02294182777404785 seconds
2019-10-31 10:46:10,384 - root - INFO - SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: path21,and sleep 0.5 seconds,input ENTER key, Spend 0.6352975368499756 seconds
2019-10-31 10:46:10,481 - root - INFO - SUCCESS Get element text element: <xpath->//div[@class='box-body']/table-component/div/table/tbody>, Spend 0.09670662879943848 seconds
2019-10-31 10:46:11,580 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.0990593433380127 seconds
2019-10-31 10:46:11,581 - root - INFO - ############################### End ###############################
2019-10-31 10:46:17,420 - root - INFO - ############################### START ###############################
2019-10-31 10:46:27,293 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.872590065002441 seconds
2019-10-31 10:46:27,563 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2693140506744385 seconds
2019-10-31 10:46:28,078 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4987008571624756 seconds
2019-10-31 10:46:28,132 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05187177658081055 seconds
2019-10-31 10:46:28,179 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04587531089782715 seconds
2019-10-31 10:46:28,221 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089093208312988 seconds
2019-10-31 10:46:29,341 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6182608604431152 seconds
2019-10-31 10:46:30,864 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.5229260921478271 seconds
2019-10-31 10:46:30,865 - root - INFO - 创建资源节点param上海,上海资源池,业务云,OpenStack L,Vmware,auto_test
2019-10-31 10:46:31,259 - root - INFO - SUCCESS Clicked element: <xpath->//button/i>, Spend 0.3929471969604492 seconds
2019-10-31 10:46:33,605 - root - INFO - SUCCESS Clicked element: <xpath -> //form[@id='regAddAndEdit_form']/div/div/div/div/div/span/span[2]/span >, Spend 0.3450653553009033 seconds
2019-10-31 10:46:34,265 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[4]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.6592037677764893 seconds
2019-10-31 10:46:34,386 - root - INFO - SUCCESS Clear and type element: <name -> regName_> content: 上海资源池, Spend 0.11967802047729492 seconds
2019-10-31 10:46:34,636 - root - INFO - SUCCESS Clicked element: <xpath -> //div[3]/div/div/div/span/span[2]/span>, Spend 0.24933242797851562 seconds
2019-10-31 10:46:35,277 - root - INFO - SUCCESS Element <xpath -> (//input[@type='search'])[5]> type content: OpenStack L,and sleep 0.5 seconds,input ENTER key, Spend 0.6383352279663086 seconds
2019-10-31 10:46:35,555 - root - INFO - SUCCESS Clicked element: <xpath->//div[4]/div/div/div/span/span[2]/span>, Spend 0.2772984504699707 seconds
2019-10-31 10:46:36,128 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[6]> type content: 业务云,and sleep 0.5 seconds,input ENTER key, Spend 0.5714352130889893 seconds
2019-10-31 10:46:36,413 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div[5]/div/div/div/span/span[2]>, Spend 0.28423333168029785 seconds
2019-10-31 10:46:36,985 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[7]> type content: Vmware,and sleep 0.5 seconds,input ENTER key, Spend 0.5714714527130127 seconds
2019-10-31 10:46:37,092 - root - INFO - SUCCESS Clear and type element: <xpath ->//textarea[@name='regDesc'] > content: auto_test, Spend 0.07380390167236328 seconds
2019-10-31 10:46:37,368 - root - INFO - SUCCESS Clicked element: <css->#regAddAndEdit .btn-primary>, Spend 0.27526211738586426 seconds
2019-10-31 10:46:37,377 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.007978439331054688 seconds
2019-10-31 10:46:38,615 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'上海')]/parent::li//child::i>, Spend 0.23739242553710938 seconds
2019-10-31 10:46:39,620 - root - INFO - SUCCESS Element: <xpath->//a[contains(text(),'上海资源池')]> is exist, Spend 0.0037605762481689453 seconds
2019-10-31 10:46:40,914 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2924933433532715 seconds
2019-10-31 10:46:40,914 - root - INFO - ############################### End ###############################
2019-10-31 10:46:53,019 - root - INFO - ############################### START ###############################
2019-10-31 10:47:02,392 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.37170934677124 seconds
2019-10-31 10:47:02,668 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2742776870727539 seconds
2019-10-31 10:47:03,169 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4886631965637207 seconds
2019-10-31 10:47:03,228 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05784440040588379 seconds
2019-10-31 10:47:03,271 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04188990592956543 seconds
2019-10-31 10:47:03,312 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04088926315307617 seconds
2019-10-31 10:47:04,419 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6052126884460449 seconds
2019-10-31 10:47:06,273 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.845062255859375 seconds
2019-10-31 10:47:06,274 - root - INFO - 创建VMware服务节点
2019-10-31 10:47:06,508 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'上海')]/parent::li//child::i>, Spend 0.23339200019836426 seconds
2019-10-31 10:47:06,816 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海资源池')]>, Spend 0.3061370849609375 seconds
2019-10-31 10:47:07,149 - root - INFO - SUCCESS Clicked element: <xpath -> //button[2]/i>, Spend 0.33113598823547363 seconds
2019-10-31 10:47:09,279 - root - INFO - SUCCESS Clear and type element: <name->serviceName> content: openstack_l_api, Spend 0.12756752967834473 seconds
2019-10-31 10:47:09,546 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/div/span/span[2]/span>, Spend 0.26728320121765137 seconds
2019-10-31 10:47:10,145 - root - INFO - SUCCESS Element <xpath->//div/div[2]/div/div/input> type content: keystone,and sleep 0.5 seconds,input ENTER key, Spend 0.5984299182891846 seconds
2019-10-31 10:47:10,279 - root - INFO - SUCCESS Clear and type element: <name->authenInfo> content: admin, Spend 0.13261127471923828 seconds
2019-10-31 10:47:10,345 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='authenInfo'])[2]> content: admin, Spend 0.06582307815551758 seconds
2019-10-31 10:47:11,091 - root - INFO - SUCCESS Clicked element: <css->#serAddAndEdit .btn-primary>, Spend 0.24335074424743652 seconds
2019-10-31 10:47:11,105 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.011921882629394531 seconds
2019-10-31 10:47:13,148 - root - INFO - SUCCESS Element: <xpath->(//a[contains(text(),'openstack_l_api')])> is exist, Spend 2.0404913425445557 seconds
2019-10-31 10:47:14,611 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4620318412780762 seconds
2019-10-31 10:47:14,612 - root - INFO - ############################### End ###############################
2019-10-31 10:47:14,613 - root - INFO - ############################### START ###############################
2019-10-31 10:47:23,939 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.32502007484436 seconds
2019-10-31 10:47:24,218 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2762601375579834 seconds
2019-10-31 10:47:24,731 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5106334686279297 seconds
2019-10-31 10:47:24,788 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.054856300354003906 seconds
2019-10-31 10:47:24,829 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04089069366455078 seconds
2019-10-31 10:47:24,870 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.038897037506103516 seconds
2019-10-31 10:47:26,022 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6511974334716797 seconds
2019-10-31 10:47:27,520 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.489013910293579 seconds
2019-10-31 10:47:27,521 - root - INFO - 创建VMware服务节点
2019-10-31 10:47:27,781 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'上海')]/parent::li//child::i>, Spend 0.2593083381652832 seconds
2019-10-31 10:47:28,030 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海资源池')]>, Spend 0.2473909854888916 seconds
2019-10-31 10:47:28,360 - root - INFO - SUCCESS Clicked element: <xpath -> //button[2]/i>, Spend 0.32712244987487793 seconds
2019-10-31 10:47:30,520 - root - INFO - SUCCESS Clear and type element: <name->serviceName> content: vmware_api, Spend 0.15856289863586426 seconds
2019-10-31 10:47:30,773 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/div/span/span[2]/span>, Spend 0.25332188606262207 seconds
2019-10-31 10:47:31,383 - root - INFO - SUCCESS Element <xpath->//div/div[2]/div/div/input> type content: vmware,and sleep 0.5 seconds,input ENTER key, Spend 0.6084086894989014 seconds
2019-10-31 10:47:31,608 - root - INFO - SUCCESS Clear and type element: <name->authenInfo> content: administrator@vsphere.local, Spend 0.22340178489685059 seconds
2019-10-31 10:47:31,686 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@name='authenInfo'])[2]> content: P@ssw0rd, Spend 0.07779216766357422 seconds
2019-10-31 10:47:32,474 - root - INFO - SUCCESS Clicked element: <css->#serAddAndEdit .btn-primary>, Spend 0.28607869148254395 seconds
2019-10-31 10:47:32,484 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.009024381637573242 seconds
2019-10-31 10:47:32,492 - root - INFO - SUCCESS Element: <xpath->(//a[contains(text(),'vmware_api')])> is exist, Spend 0.005980730056762695 seconds
2019-10-31 10:47:33,758 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.2655632495880127 seconds
2019-10-31 10:47:33,758 - root - INFO - ############################### End ###############################
2019-10-31 10:47:45,170 - root - INFO - ############################### START ###############################
2019-10-31 10:47:54,004 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.833369493484497 seconds
2019-10-31 10:47:54,276 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2712736129760742 seconds
2019-10-31 10:47:54,823 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5361297130584717 seconds
2019-10-31 10:47:54,885 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.059838294982910156 seconds
2019-10-31 10:47:54,932 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04587912559509277 seconds
2019-10-31 10:47:54,969 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690147399902344 seconds
2019-10-31 10:47:56,054 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5824413299560547 seconds
2019-10-31 10:47:57,653 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.5867552757263184 seconds
2019-10-31 10:47:57,654 - root - INFO - 添加endpint
2019-10-31 10:47:57,886 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'上海')]/parent::li//child::i>, Spend 0.2313852310180664 seconds
2019-10-31 10:47:58,714 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海资源池')]>, Spend 0.32600855827331543 seconds
2019-10-31 10:47:58,944 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海资源池')]/parent::li//child::i>, Spend 0.22939467430114746 seconds
2019-10-31 10:47:59,691 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.24434542655944824 seconds
2019-10-31 10:48:00,488 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.2962484359741211 seconds
2019-10-31 10:48:00,649 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: https://192.168.54.136, Spend 0.15952801704406738 seconds
2019-10-31 10:48:00,892 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.24335050582885742 seconds
2019-10-31 10:48:01,439 - root - INFO - SUCCESS Get element text element: <xpath->//table[@id='accessPoint']/tbody/tr[2]>, Spend 0.04378318786621094 seconds
2019-10-31 10:48:02,839 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.399214506149292 seconds
2019-10-31 10:48:02,839 - root - INFO - ############################### End ###############################
2019-10-31 10:48:02,841 - root - INFO - ############################### START ###############################
2019-10-31 10:48:12,609 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.766873121261597 seconds
2019-10-31 10:48:12,877 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2673168182373047 seconds
2019-10-31 10:48:13,477 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5957074165344238 seconds
2019-10-31 10:48:13,556 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.07679104804992676 seconds
2019-10-31 10:48:13,624 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0678110122680664 seconds
2019-10-31 10:48:13,671 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.046874284744262695 seconds
2019-10-31 10:48:14,840 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6662077903747559 seconds
2019-10-31 10:48:16,146 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.295534610748291 seconds
2019-10-31 10:48:16,147 - root - INFO - 添加endpint
2019-10-31 10:48:16,397 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(.,'上海')]/parent::li//child::i>, Spend 0.25032877922058105 seconds
2019-10-31 10:48:17,249 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海资源池')]>, Spend 0.34891581535339355 seconds
2019-10-31 10:48:17,495 - root - INFO - SUCCESS Clicked element: <xpath->//a[contains(text(),'上海资源池')]/parent::li//child::i>, Spend 0.24434685707092285 seconds
2019-10-31 10:48:18,344 - root - INFO - SUCCESS Clicked element: <xpath->(//a[contains(text(),'openstack_l_api')])>, Spend 0.3459360599517822 seconds
2019-10-31 10:48:19,159 - root - INFO - SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.31417274475097656 seconds
2019-10-31 10:48:19,343 - root - INFO - SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: http://192.168.54.103:5000/v3, Spend 0.18348145484924316 seconds
2019-10-31 10:48:19,596 - root - INFO - SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.25332212448120117 seconds
2019-10-31 10:48:19,645 - root - INFO - SUCCESS Get element text element: <xpath->//table[@id='accessPoint']/tbody/tr[2]>, Spend 0.04886984825134277 seconds
2019-10-31 10:48:22,156 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 2.509290933609009 seconds
2019-10-31 10:48:22,157 - root - INFO - ############################### End ###############################
2019-10-31 10:48:39,158 - root - INFO - ############################### START ###############################
2019-10-31 10:48:48,995 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.83673644065857 seconds
2019-10-31 10:48:49,263 - root - INFO - SUCCESS Set browser window maximized, Spend 0.267284631729126 seconds
2019-10-31 10:48:49,765 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.48670363426208496 seconds
2019-10-31 10:48:49,824 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.056851863861083984 seconds
2019-10-31 10:48:49,858 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03490614891052246 seconds
2019-10-31 10:48:49,884 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.023935556411743164 seconds
2019-10-31 10:48:51,103 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7170705795288086 seconds
2019-10-31 10:48:52,544 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.4401135444641113 seconds
2019-10-31 10:48:57,607 - root - INFO - FAIL Unable to click element: <xpath->//button[contains(.,' 刷新')]>, Spend 5.060507297515869 seconds
2019-10-31 10:48:58,665 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.0561280250549316 seconds
2019-10-31 10:48:58,665 - root - INFO - ############################### End ###############################
2019-10-31 10:49:10,122 - root - INFO - ############################### START ###############################
2019-10-31 10:49:19,453 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.329051971435547 seconds
2019-10-31 10:49:19,779 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3251831531524658 seconds
2019-10-31 10:49:20,336 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5086057186126709 seconds
2019-10-31 10:49:20,396 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05884289741516113 seconds
2019-10-31 10:49:20,442 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04388260841369629 seconds
2019-10-31 10:49:20,484 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989458084106445 seconds
2019-10-31 10:49:21,539 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5545189380645752 seconds
2019-10-31 10:49:21,540 - root - INFO - 同步物理资源
2019-10-31 10:49:23,256 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.7154123783111572 seconds
2019-10-31 10:49:23,263 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.007006406784057617 seconds
2019-10-31 10:49:23,264 - root - INFO - 选择region上海;
2019-10-31 10:49:23,504 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.23937439918518066 seconds
2019-10-31 10:49:24,106 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5994386672973633 seconds
2019-10-31 10:49:24,110 - root - INFO - 选择数据中心:上海资源池
2019-10-31 10:49:24,389 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2782273292541504 seconds
2019-10-31 10:49:24,969 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5764360427856445 seconds
2019-10-31 10:49:26,298 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.327470064163208 seconds
2019-10-31 10:49:26,527 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22943782806396484 seconds
2019-10-31 10:49:26,789 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.25925397872924805 seconds
2019-10-31 10:49:27,437 - root - INFO - FAIL Unable switch to frame element: <id->syncModal>, Spend 0.14563608169555664 seconds
2019-10-31 10:49:28,536 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.0982577800750732 seconds
2019-10-31 10:49:28,536 - root - INFO - ############################### End ###############################
2019-10-31 10:49:40,256 - root - INFO - ############################### START ###############################
2019-10-31 10:49:49,578 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.322063207626343 seconds
2019-10-31 10:49:49,847 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26700401306152344 seconds
2019-10-31 10:49:50,352 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.49068784713745117 seconds
2019-10-31 10:49:50,410 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.056848764419555664 seconds
2019-10-31 10:49:50,454 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04388260841369629 seconds
2019-10-31 10:49:50,492 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.035904884338378906 seconds
2019-10-31 10:49:51,658 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6631853580474854 seconds
2019-10-31 10:49:51,658 - root - INFO - 同步物理资源
2019-10-31 10:49:53,137 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.478043794631958 seconds
2019-10-31 10:49:53,153 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.014994144439697266 seconds
2019-10-31 10:49:53,154 - root - INFO - 选择region上海;
2019-10-31 10:49:53,473 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.31911277770996094 seconds
2019-10-31 10:49:54,014 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5395240783691406 seconds
2019-10-31 10:49:54,015 - root - INFO - 选择数据中心:上海资源池
2019-10-31 10:49:54,295 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28025078773498535 seconds
2019-10-31 10:49:54,844 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5474987030029297 seconds
2019-10-31 10:49:56,131 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2855989933013916 seconds
2019-10-31 10:49:56,387 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.25435924530029297 seconds
2019-10-31 10:49:56,618 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2293689250946045 seconds
2019-10-31 10:49:57,170 - root - INFO - FAIL Unable switch to frame element: <id->syncModal>, Spend 0.0498199462890625 seconds
2019-10-31 10:49:58,529 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.3583643436431885 seconds
2019-10-31 10:49:58,530 - root - INFO - ############################### End ###############################
2019-10-31 10:50:32,666 - root - INFO - ############################### START ###############################
2019-10-31 10:50:42,042 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.374922752380371 seconds
2019-10-31 10:50:42,323 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2783641815185547 seconds
2019-10-31 10:50:42,825 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4861617088317871 seconds
2019-10-31 10:50:42,882 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05485248565673828 seconds
2019-10-31 10:50:42,929 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.046872615814208984 seconds
2019-10-31 10:50:42,964 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.034906864166259766 seconds
2019-10-31 10:50:44,057 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5914163589477539 seconds
2019-10-31 10:50:44,058 - root - INFO - 同步物理资源
2019-10-31 10:50:45,806 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.7473270893096924 seconds
2019-10-31 10:50:45,813 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.005984306335449219 seconds
2019-10-31 10:50:45,813 - root - INFO - 选择region上海;
2019-10-31 10:50:46,064 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.24933338165283203 seconds
2019-10-31 10:50:46,648 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5814244747161865 seconds
2019-10-31 10:50:46,650 - root - INFO - 选择数据中心:上海资源池
2019-10-31 10:50:46,942 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2902567386627197 seconds
2019-10-31 10:50:47,523 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5794196128845215 seconds
2019-10-31 10:50:48,865 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3384144306182861 seconds
2019-10-31 10:50:49,115 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.24832797050476074 seconds
2019-10-31 10:50:49,357 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.24139952659606934 seconds
2019-10-31 10:50:51,409 - root - INFO - FAIL Unable switch to frame element: <id->syncModal>, Spend 0.04772639274597168 seconds
2019-10-31 10:50:52,903 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4930033683776855 seconds
2019-10-31 10:50:52,904 - root - INFO - ############################### End ###############################
2019-10-31 10:54:24,313 - root - INFO - ############################### START ###############################
2019-10-31 10:54:33,169 - root - INFO - SUCCESS Start a new browser: firefox, Spend 8.85532808303833 seconds
2019-10-31 10:54:33,446 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27625465393066406 seconds
2019-10-31 10:54:33,971 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5106773376464844 seconds
2019-10-31 10:54:34,039 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.06582498550415039 seconds
2019-10-31 10:54:34,087 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.046872854232788086 seconds
2019-10-31 10:54:34,123 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690218925476074 seconds
2019-10-31 10:54:35,205 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5793814659118652 seconds
2019-10-31 10:54:35,206 - root - INFO - 同步物理资源
2019-10-31 10:54:36,813 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6076991558074951 seconds
2019-10-31 10:54:36,820 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.00698089599609375 seconds
2019-10-31 10:54:36,821 - root - INFO - 选择region上海;
2019-10-31 10:54:37,069 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.24631309509277344 seconds
2019-10-31 10:54:37,641 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5715312957763672 seconds
2019-10-31 10:54:37,642 - root - INFO - 选择数据中心:上海资源池
2019-10-31 10:54:37,930 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2872326374053955 seconds
2019-10-31 10:54:38,510 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5764594078063965 seconds
2019-10-31 10:54:39,805 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2945373058319092 seconds
2019-10-31 10:54:40,069 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.26130080223083496 seconds
2019-10-31 10:54:40,330 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2602810859680176 seconds
2019-10-31 10:54:42,566 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.23337674140930176 seconds
2019-10-31 10:54:42,576 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.009972095489501953 seconds
2019-10-31 10:54:42,601 - root - INFO - FAIL Unable to click element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.023937225341796875 seconds
2019-10-31 10:54:44,165 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.563814640045166 seconds
2019-10-31 10:54:44,166 - root - INFO - ############################### End ###############################
2019-10-31 10:55:28,682 - root - INFO - ############################### START ###############################
2019-10-31 10:55:37,993 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.30843734741211 seconds
2019-10-31 10:55:38,262 - root - INFO - SUCCESS Set browser window maximized, Spend 0.26849913597106934 seconds
2019-10-31 10:55:38,788 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5066444873809814 seconds
2019-10-31 10:55:38,846 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.055856943130493164 seconds
2019-10-31 10:55:38,894 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04688119888305664 seconds
2019-10-31 10:55:38,938 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04388117790222168 seconds
2019-10-31 10:55:40,038 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5973992347717285 seconds
2019-10-31 10:55:40,039 - root - INFO - 同步物理资源
2019-10-31 10:55:41,533 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.4930040836334229 seconds
2019-10-31 10:55:41,550 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.015954017639160156 seconds
2019-10-31 10:55:41,550 - root - INFO - 选择region上海;
2019-10-31 10:55:41,869 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.31818604469299316 seconds
2019-10-31 10:55:42,418 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5484950542449951 seconds
2019-10-31 10:55:42,419 - root - INFO - 选择数据中心:上海资源池
2019-10-31 10:55:42,690 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2702772617340088 seconds
2019-10-31 10:55:43,271 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5774574279785156 seconds
2019-10-31 10:55:44,553 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2796270847320557 seconds
2019-10-31 10:55:44,809 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.25331807136535645 seconds
2019-10-31 10:55:45,037 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.22739100456237793 seconds
2019-10-31 10:55:47,336 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.2962014675140381 seconds
2019-10-31 10:55:47,359 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.020947933197021484 seconds
2019-10-31 10:55:48,723 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.3619987964630127 seconds
2019-10-31 10:55:48,795 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.06986451148986816 seconds
2019-10-31 10:55:49,935 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1160082817077637 seconds
2019-10-31 10:55:49,935 - root - INFO - ############################### End ###############################
2019-10-31 10:56:14,292 - root - INFO - ############################### START ###############################
2019-10-31 10:56:23,598 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.306140422821045 seconds
2019-10-31 10:56:23,906 - root - INFO - SUCCESS Set browser window maximized, Spend 0.30716872215270996 seconds
2019-10-31 10:56:24,366 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4448108673095703 seconds
2019-10-31 10:56:24,413 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.045874595642089844 seconds
2019-10-31 10:56:24,457 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04288816452026367 seconds
2019-10-31 10:56:24,486 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.027948379516601562 seconds
2019-10-31 10:56:25,603 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6163477897644043 seconds
2019-10-31 10:56:25,604 - root - INFO - 同步物理资源
2019-10-31 10:56:27,089 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.4830334186553955 seconds
2019-10-31 10:56:27,107 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.016953468322753906 seconds
2019-10-31 10:56:27,107 - root - INFO - 选择region上海;
2019-10-31 10:56:27,429 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.3201441764831543 seconds
2019-10-31 10:56:28,000 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5684430599212646 seconds
2019-10-31 10:56:28,002 - root - INFO - 选择数据中心:上海资源池
2019-10-31 10:56:28,302 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.29918694496154785 seconds
2019-10-31 10:56:28,863 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5594711303710938 seconds
2019-10-31 10:56:30,214 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.348402738571167 seconds
2019-10-31 10:56:30,474 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.25729823112487793 seconds
2019-10-31 10:56:30,707 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.23237848281860352 seconds
2019-10-31 10:56:32,937 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.2284231185913086 seconds
2019-10-31 10:56:32,944 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.00694727897644043 seconds
2019-10-31 10:56:34,989 - root - INFO - FAIL Unable to click element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.04487323760986328 seconds
2019-10-31 10:56:36,430 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4395403861999512 seconds
2019-10-31 10:56:36,431 - root - INFO - ############################### End ###############################
2019-10-31 20:11:45,051 - root - INFO - ############################### START ###############################
2019-10-31 20:11:56,484 - root - INFO - SUCCESS Start a new browser: firefox, Spend 11.398288011550903 seconds
2019-10-31 20:11:56,764 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27967000007629395 seconds
2019-10-31 20:11:57,561 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6243736743927002 seconds
2019-10-31 20:11:57,619 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05584526062011719 seconds
2019-10-31 20:11:57,669 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04886889457702637 seconds
2019-10-31 20:11:57,707 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789639472961426 seconds
2019-10-31 20:11:58,828 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6183130741119385 seconds
2019-10-31 20:11:58,829 - root - INFO - 同步物理资源
2019-10-31 20:12:00,833 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 2.0036330223083496 seconds
2019-10-31 20:12:00,840 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.005984783172607422 seconds
2019-10-31 20:12:00,840 - root - INFO - 选择region上海;
2019-10-31 20:12:01,083 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.2413160800933838 seconds
2019-10-31 20:12:01,645 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5594723224639893 seconds
2019-10-31 20:12:01,646 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:12:01,941 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.29421091079711914 seconds
2019-10-31 20:12:02,517 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5744638442993164 seconds
2019-10-31 20:12:03,972 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.4541094303131104 seconds
2019-10-31 20:12:04,228 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.2543222904205322 seconds
2019-10-31 20:12:04,461 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2313849925994873 seconds
2019-10-31 20:12:06,736 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.2742347717285156 seconds
2019-10-31 20:12:06,746 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.008976936340332031 seconds
2019-10-31 20:12:08,988 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.24016952514648438 seconds
2019-10-31 20:12:09,016 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.028922557830810547 seconds
2019-10-31 20:12:10,772 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.7293813228607178 seconds
2019-10-31 20:12:10,773 - root - INFO - ############################### End ###############################
2019-10-31 20:27:51,419 - root - INFO - ############################### START ###############################
2019-10-31 20:28:00,762 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.340495109558105 seconds
2019-10-31 20:28:01,055 - root - INFO - SUCCESS Set browser window maximized, Spend 0.29383277893066406 seconds
2019-10-31 20:28:01,662 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5854341983795166 seconds
2019-10-31 20:28:01,730 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.06682085990905762 seconds
2019-10-31 20:28:01,776 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04587697982788086 seconds
2019-10-31 20:28:01,816 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989243507385254 seconds
2019-10-31 20:28:02,907 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5884270668029785 seconds
2019-10-31 20:28:02,908 - root - INFO - 同步物理资源
2019-10-31 20:28:04,733 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.8241572380065918 seconds
2019-10-31 20:28:04,742 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.009936094284057617 seconds
2019-10-31 20:28:04,743 - root - INFO - 选择region上海;
2019-10-31 20:28:04,984 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.23935985565185547 seconds
2019-10-31 20:28:05,528 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5435457229614258 seconds
2019-10-31 20:28:05,529 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:28:05,819 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28922581672668457 seconds
2019-10-31 20:28:06,407 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.585411787033081 seconds
2019-10-31 20:28:07,702 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2925379276275635 seconds
2019-10-31 20:28:07,930 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22742676734924316 seconds
2019-10-31 20:28:08,163 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2323923110961914 seconds
2019-10-31 20:28:10,426 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.26132988929748535 seconds
2019-10-31 20:28:10,445 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.016944408416748047 seconds
2019-10-31 20:28:20,696 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.25011301040649414 seconds
2019-10-31 20:28:20,725 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.02794957160949707 seconds
2019-10-31 20:28:21,867 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1409225463867188 seconds
2019-10-31 20:28:21,867 - root - INFO - ############################### End ###############################
2019-10-31 20:29:13,247 - root - INFO - ############################### START ###############################
2019-10-31 20:29:22,576 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.328019142150879 seconds
2019-10-31 20:29:22,854 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2762925624847412 seconds
2019-10-31 20:29:23,366 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.496746301651001 seconds
2019-10-31 20:29:23,433 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.06582331657409668 seconds
2019-10-31 20:29:23,474 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03989458084106445 seconds
2019-10-31 20:29:23,514 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03889656066894531 seconds
2019-10-31 20:29:24,587 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5714719295501709 seconds
2019-10-31 20:29:24,588 - root - INFO - 同步物理资源
2019-10-31 20:29:26,286 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.698488712310791 seconds
2019-10-31 20:29:26,338 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.050820350646972656 seconds
2019-10-31 20:29:26,339 - root - INFO - 选择region上海;
2019-10-31 20:29:26,579 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.23935985565185547 seconds
2019-10-31 20:29:27,169 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5873982906341553 seconds
2019-10-31 20:29:27,171 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:29:27,474 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.3021869659423828 seconds
2019-10-31 20:29:28,025 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5485000610351562 seconds
2019-10-31 20:29:29,287 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2626500129699707 seconds
2019-10-31 20:29:29,513 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22341585159301758 seconds
2019-10-31 20:29:29,774 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2603027820587158 seconds
2019-10-31 20:29:32,027 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.25231480598449707 seconds
2019-10-31 20:29:32,036 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.007979631423950195 seconds
2019-10-31 20:29:42,401 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.36402416229248047 seconds
2019-10-31 20:29:42,455 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.053071022033691406 seconds
2019-10-31 20:29:43,913 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.455104112625122 seconds
2019-10-31 20:29:43,913 - root - INFO - ############################### End ###############################
2019-10-31 20:31:27,153 - root - INFO - ############################### START ###############################
2019-10-31 20:31:36,488 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.334032535552979 seconds
2019-10-31 20:31:36,760 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2703866958618164 seconds
2019-10-31 20:31:37,450 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6725873947143555 seconds
2019-10-31 20:31:37,507 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05485248565673828 seconds
2019-10-31 20:31:37,553 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04388165473937988 seconds
2019-10-31 20:31:37,601 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.046875953674316406 seconds
2019-10-31 20:31:38,690 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5874300003051758 seconds
2019-10-31 20:31:38,691 - root - INFO - 同步物理资源
2019-10-31 20:31:40,471 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.7792391777038574 seconds
2019-10-31 20:31:40,482 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.008978128433227539 seconds
2019-10-31 20:31:40,482 - root - INFO - 选择region上海;
2019-10-31 20:31:40,725 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.24231767654418945 seconds
2019-10-31 20:31:41,273 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.547534704208374 seconds
2019-10-31 20:31:41,274 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:31:41,561 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2872307300567627 seconds
2019-10-31 20:31:42,116 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5535187721252441 seconds
2019-10-31 20:31:43,381 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2656397819519043 seconds
2019-10-31 20:31:43,611 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22835516929626465 seconds
2019-10-31 20:31:43,840 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2293863296508789 seconds
2019-10-31 20:31:46,110 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.26712608337402344 seconds
2019-10-31 20:31:56,119 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.00698089599609375 seconds
2019-10-31 20:31:56,381 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.26027965545654297 seconds
2019-10-31 20:31:56,411 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.02994680404663086 seconds
2019-10-31 20:31:57,537 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1249914169311523 seconds
2019-10-31 20:31:57,537 - root - INFO - ############################### End ###############################
2019-10-31 20:32:31,424 - root - INFO - ############################### START ###############################
2019-10-31 20:32:40,762 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.337284326553345 seconds
2019-10-31 20:32:41,043 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2803001403808594 seconds
2019-10-31 20:32:41,505 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.43483638763427734 seconds
2019-10-31 20:32:41,605 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.09673142433166504 seconds
2019-10-31 20:32:41,638 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03191518783569336 seconds
2019-10-31 20:32:41,662 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.02393651008605957 seconds
2019-10-31 20:32:42,908 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7450072765350342 seconds
2019-10-31 20:32:42,908 - root - INFO - 同步物理资源
2019-10-31 20:32:44,322 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.4111826419830322 seconds
2019-10-31 20:32:45,574 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.251648187637329 seconds
2019-10-31 20:32:45,574 - root - INFO - 选择region上海;
2019-10-31 20:32:50,629 - root - INFO - FAIL Unable to click element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 5.053478956222534 seconds
2019-10-31 20:32:51,812 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.1828365325927734 seconds
2019-10-31 20:32:51,813 - root - INFO - ############################### End ###############################
2019-10-31 20:33:11,854 - root - INFO - ############################### START ###############################
2019-10-31 20:33:21,143 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.288113117218018 seconds
2019-10-31 20:33:21,424 - root - INFO - SUCCESS Set browser window maximized, Spend 0.27881360054016113 seconds
2019-10-31 20:33:21,963 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5236034393310547 seconds
2019-10-31 20:33:22,133 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.16954588890075684 seconds
2019-10-31 20:33:22,192 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.058843374252319336 seconds
2019-10-31 20:33:22,236 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188871383666992 seconds
2019-10-31 20:33:23,329 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5904457569122314 seconds
2019-10-31 20:33:23,330 - root - INFO - 同步物理资源
2019-10-31 20:33:24,950 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6196672916412354 seconds
2019-10-31 20:33:24,980 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.029953956604003906 seconds
2019-10-31 20:33:24,981 - root - INFO - 选择region上海;
2019-10-31 20:33:25,311 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.32912516593933105 seconds
2019-10-31 20:33:25,854 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5425469875335693 seconds
2019-10-31 20:33:25,855 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:33:26,131 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2762627601623535 seconds
2019-10-31 20:33:26,704 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5704753398895264 seconds
2019-10-31 20:33:27,993 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2875797748565674 seconds
2019-10-31 20:33:28,220 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22537732124328613 seconds
2019-10-31 20:33:28,467 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.24537944793701172 seconds
2019-10-31 20:33:30,795 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.3240509033203125 seconds
2019-10-31 20:33:40,823 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.02488875389099121 seconds
2019-10-31 20:33:41,173 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.3480226993560791 seconds
2019-10-31 20:33:41,203 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.028921842575073242 seconds
2019-10-31 20:33:43,257 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 2.053556442260742 seconds
2019-10-31 20:33:43,258 - root - INFO - ############################### End ###############################
2019-10-31 20:36:36,059 - root - INFO - ############################### START ###############################
2019-10-31 20:36:45,898 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.837643384933472 seconds
2019-10-31 20:36:46,172 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2737863063812256 seconds
2019-10-31 20:36:46,857 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6671931743621826 seconds
2019-10-31 20:36:46,925 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.0668191909790039 seconds
2019-10-31 20:36:46,976 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.049866676330566406 seconds
2019-10-31 20:36:47,027 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04986572265625 seconds
2019-10-31 20:36:48,217 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6881284713745117 seconds
2019-10-31 20:36:48,218 - root - INFO - 同步物理资源
2019-10-31 20:36:50,275 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 2.0565035343170166 seconds
2019-10-31 20:36:50,281 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.0059833526611328125 seconds
2019-10-31 20:36:50,282 - root - INFO - 选择region上海;
2019-10-31 20:36:50,543 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.26030540466308594 seconds
2019-10-31 20:36:51,112 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5674839019775391 seconds
2019-10-31 20:36:51,112 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:36:51,408 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.29421257972717285 seconds
2019-10-31 20:36:51,983 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5735406875610352 seconds
2019-10-31 20:36:53,249 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2646164894104004 seconds
2019-10-31 20:36:53,487 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.23836421966552734 seconds
2019-10-31 20:36:53,738 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2485644817352295 seconds
2019-10-31 20:36:54,991 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.2513546943664551 seconds
2019-10-31 20:37:09,353 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 2.8956170082092285 seconds
2019-10-31 20:37:09,354 - root - INFO - ############################### End ###############################
2019-10-31 20:37:29,242 - root - INFO - ############################### START ###############################
2019-10-31 20:37:38,563 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.321653604507446 seconds
2019-10-31 20:37:38,855 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2904629707336426 seconds
2019-10-31 20:37:39,506 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6343088150024414 seconds
2019-10-31 20:37:39,572 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.0648200511932373 seconds
2019-10-31 20:37:39,619 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04587745666503906 seconds
2019-10-31 20:37:39,660 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04089021682739258 seconds
2019-10-31 20:37:40,752 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.589423656463623 seconds
2019-10-31 20:37:40,753 - root - INFO - 同步物理资源
2019-10-31 20:37:42,438 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6844944953918457 seconds
2019-10-31 20:37:42,446 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.007947921752929688 seconds
2019-10-31 20:37:42,447 - root - INFO - 选择region上海;
2019-10-31 20:37:42,681 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.23241090774536133 seconds
2019-10-31 20:37:43,261 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5794601440429688 seconds
2019-10-31 20:37:43,262 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:37:43,548 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28520774841308594 seconds
2019-10-31 20:37:44,102 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5524868965148926 seconds
2019-10-31 20:37:45,388 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2845888137817383 seconds
2019-10-31 20:37:45,619 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.2293868064880371 seconds
2019-10-31 20:37:45,867 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2473452091217041 seconds
2019-10-31 20:37:47,109 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.23835968971252441 seconds
2019-10-31 20:38:00,141 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4354143142700195 seconds
2019-10-31 20:38:00,142 - root - INFO - ############################### End ###############################
2019-10-31 20:38:22,123 - root - INFO - ############################### START ###############################
2019-10-31 20:38:31,415 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.291144847869873 seconds
2019-10-31 20:38:31,702 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2852354049682617 seconds
2019-10-31 20:38:32,348 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6293141841888428 seconds
2019-10-31 20:38:32,402 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.05186271667480469 seconds
2019-10-31 20:38:32,454 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.050864219665527344 seconds
2019-10-31 20:38:32,496 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03989434242248535 seconds
2019-10-31 20:38:33,632 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6343040466308594 seconds
2019-10-31 20:38:33,633 - root - INFO - 同步物理资源
2019-10-31 20:38:35,207 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.5717928409576416 seconds
2019-10-31 20:38:35,235 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.026927709579467773 seconds
2019-10-31 20:38:35,236 - root - INFO - 选择region上海;
2019-10-31 20:38:35,555 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.317180871963501 seconds
2019-10-31 20:38:36,098 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5435466766357422 seconds
2019-10-31 20:38:36,099 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:38:36,384 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28324341773986816 seconds
2019-10-31 20:38:36,935 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5497720241546631 seconds
2019-10-31 20:38:36,974 - root - INFO - FAIL Unable to click element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.03790020942687988 seconds
2019-10-31 20:38:38,462 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 1.4860212802886963 seconds
2019-10-31 20:38:38,463 - root - INFO - ############################### End ###############################
2019-10-31 20:39:10,824 - root - INFO - ############################### START ###############################
2019-10-31 20:39:20,159 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.333033800125122 seconds
2019-10-31 20:39:20,428 - root - INFO - SUCCESS Set browser window maximized, Spend 0.269589900970459 seconds
2019-10-31 20:39:21,069 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6219954490661621 seconds
2019-10-31 20:39:21,192 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.12266921997070312 seconds
2019-10-31 20:39:21,224 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.029920339584350586 seconds
2019-10-31 20:39:21,251 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.02593064308166504 seconds
2019-10-31 20:39:22,466 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7130846977233887 seconds
2019-10-31 20:39:22,467 - root - INFO - 同步物理资源
2019-10-31 20:39:24,122 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.6539459228515625 seconds
2019-10-31 20:39:25,399 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.2761518955230713 seconds
2019-10-31 20:39:25,400 - root - INFO - 选择region上海;
2019-10-31 20:39:30,443 - root - INFO - FAIL Unable to click element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 5.043519020080566 seconds
2019-10-31 20:39:34,528 - root - INFO - SUCCESS Closed all window and quit the driver, Spend 4.084069013595581 seconds
2019-10-31 20:39:34,529 - root - INFO - ############################### End ###############################
2019-10-31 20:39:37,473 - root - INFO - ############################### START ###############################
2019-10-31 20:39:47,265 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.790809154510498 seconds
2019-10-31 20:39:47,540 - root - INFO - SUCCESS Set browser window maximized, Spend 0.272289514541626 seconds
2019-10-31 20:39:48,081 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.524564266204834 seconds
2019-10-31 20:39:48,162 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.0797879695892334 seconds
2019-10-31 20:39:48,217 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05385541915893555 seconds
2019-10-31 20:39:48,277 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.057843685150146484 seconds
2019-10-31 20:39:49,372 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.5943832397460938 seconds
2019-10-31 20:39:49,373 - root - INFO - 同步物理资源
2019-10-31 20:39:52,286 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 2.910217046737671 seconds
2019-10-31 20:39:52,304 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.014959096908569336 seconds
2019-10-31 20:39:52,305 - root - INFO - 选择region上海;
2019-10-31 20:39:52,552 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.24636507034301758 seconds
2019-10-31 20:39:53,112 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.557469367980957 seconds
2019-10-31 20:39:53,113 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:39:53,387 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.2743051052093506 seconds
2019-10-31 20:39:53,945 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.55747389793396 seconds
2019-10-31 20:39:55,205 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2586286067962646 seconds
2019-10-31 20:39:55,430 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22442913055419922 seconds
2019-10-31 20:39:55,665 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.23238658905029297 seconds
2019-10-31 20:39:56,950 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.28408074378967285 seconds
2019-10-31 20:40:07,215 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.26402711868286133 seconds
2019-10-31 20:40:07,245 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.028965234756469727 seconds
2019-10-31 20:40:07,245 - root - INFO - ############################### End ###############################
2019-10-31 20:41:54,623 - root - INFO - ############################### START ###############################
2019-10-31 20:42:00,366 - root - INFO - ############################### START ###############################
2019-10-31 20:42:09,636 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.268497228622437 seconds
2019-10-31 20:42:09,906 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2698178291320801 seconds
2019-10-31 20:42:10,629 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6937222480773926 seconds
2019-10-31 20:42:10,707 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.07580184936523438 seconds
2019-10-31 20:42:10,758 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05086255073547363 seconds
2019-10-31 20:42:10,801 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.04188799858093262 seconds
2019-10-31 20:42:11,921 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6173214912414551 seconds
2019-10-31 20:42:11,922 - root - INFO - 同步物理资源
2019-10-31 20:42:14,137 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 2.213088035583496 seconds
2019-10-31 20:42:14,146 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.007977962493896484 seconds
2019-10-31 20:42:14,146 - root - INFO - 选择region上海;
2019-10-31 20:42:14,389 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.24032092094421387 seconds
2019-10-31 20:42:14,946 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5569665431976318 seconds
2019-10-31 20:42:14,947 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:42:15,221 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.27227282524108887 seconds
2019-10-31 20:42:15,786 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5644552707672119 seconds
2019-10-31 20:42:17,107 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.319509744644165 seconds
2019-10-31 20:42:17,343 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.23536920547485352 seconds
2019-10-31 20:42:17,581 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.23636984825134277 seconds
2019-10-31 20:42:18,837 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.25531768798828125 seconds
2019-10-31 20:42:39,087 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.2472705841064453 seconds
2019-10-31 20:42:39,123 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.034903764724731445 seconds
2019-10-31 20:43:11,334 - root - INFO - ############################### End ###############################
2019-10-31 20:43:29,418 - root - INFO - ############################### START ###############################
2019-10-31 20:43:38,732 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.31304669380188 seconds
2019-10-31 20:43:39,015 - root - INFO - SUCCESS Set browser window maximized, Spend 0.28229236602783203 seconds
2019-10-31 20:43:39,667 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6363778114318848 seconds
2019-10-31 20:43:39,730 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.06181788444519043 seconds
2019-10-31 20:43:39,779 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.04787111282348633 seconds
2019-10-31 20:43:39,821 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.040892839431762695 seconds
2019-10-31 20:43:40,976 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6532530784606934 seconds
2019-10-31 20:43:40,977 - root - INFO - 同步物理资源
2019-10-31 20:43:42,785 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.8071682453155518 seconds
2019-10-31 20:43:42,793 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.006981611251831055 seconds
2019-10-31 20:43:42,793 - root - INFO - 选择region上海;
2019-10-31 20:43:43,031 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.23733210563659668 seconds
2019-10-31 20:43:43,583 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.550527811050415 seconds
2019-10-31 20:43:43,584 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:43:43,868 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28324270248413086 seconds
2019-10-31 20:43:44,457 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5874283313751221 seconds
2019-10-31 20:43:45,775 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.3175101280212402 seconds
2019-10-31 20:43:46,005 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.22838902473449707 seconds
2019-10-31 20:43:46,267 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.24542713165283203 seconds
2019-10-31 20:43:47,532 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.2623405456542969 seconds
2019-10-31 20:44:07,814 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.28025317192077637 seconds
2019-10-31 20:44:07,870 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.05684804916381836 seconds
2019-10-31 20:44:07,872 - root - INFO - ############################### End ###############################
2019-10-31 20:44:33,835 - root - INFO - ############################### START ###############################
2019-10-31 20:44:43,711 - root - INFO - SUCCESS Start a new browser: firefox, Spend 9.874548435211182 seconds
2019-10-31 20:44:44,012 - root - INFO - SUCCESS Set browser window maximized, Spend 0.3005342483520508 seconds
2019-10-31 20:44:44,754 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.7190761566162109 seconds
2019-10-31 20:44:44,958 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.20245862007141113 seconds
2019-10-31 20:44:45,015 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05585169792175293 seconds
2019-10-31 20:44:45,076 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05884242057800293 seconds
2019-10-31 20:44:46,239 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6609699726104736 seconds
2019-10-31 20:44:46,240 - root - INFO - 同步物理资源
2019-10-31 20:44:48,040 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.7993519306182861 seconds
2019-10-31 20:44:48,067 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.026962995529174805 seconds
2019-10-31 20:44:48,068 - root - INFO - 选择region上海;
2019-10-31 20:44:48,412 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.3430824279785156 seconds
2019-10-31 20:44:48,985 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5706465244293213 seconds
2019-10-31 20:44:48,986 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:44:49,275 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.28823351860046387 seconds
2019-10-31 20:44:49,889 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.6133589744567871 seconds
2019-10-31 20:44:51,147 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.2566616535186768 seconds
2019-10-31 20:44:51,371 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.2234046459197998 seconds
2019-10-31 20:44:51,608 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.23572731018066406 seconds
2019-10-31 20:44:52,872 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.26123499870300293 seconds
2019-10-31 20:45:13,168 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.29021692276000977 seconds
2019-10-31 20:45:13,213 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.04291868209838867 seconds
2019-10-31 20:45:13,214 - root - INFO - ############################### End ###############################
2019-10-31 20:46:56,870 - root - INFO - ############################### START ###############################
2019-10-31 20:47:07,164 - root - INFO - SUCCESS Start a new browser: firefox, Spend 10.293426513671875 seconds
2019-10-31 20:47:07,447 - root - INFO - SUCCESS Set browser window maximized, Spend 0.2822871208190918 seconds
2019-10-31 20:47:07,955 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4911611080169678 seconds
2019-10-31 20:47:08,007 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 上海管理员, Spend 0.050829172134399414 seconds
2019-10-31 20:47:08,042 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03490281105041504 seconds
2019-10-31 20:47:08,067 - root - INFO - SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.023936033248901367 seconds
2019-10-31 20:47:09,208 - root - INFO - SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.6392881870269775 seconds
2019-10-31 20:47:09,209 - root - INFO - 同步物理资源
2019-10-31 20:47:11,351 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 2.141669750213623 seconds
2019-10-31 20:47:11,356 - root - INFO - SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.005984067916870117 seconds
2019-10-31 20:47:11,358 - root - INFO - 选择region上海;
2019-10-31 20:47:11,604 - root - INFO - SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.2433788776397705 seconds
2019-10-31 20:47:12,155 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 上海,and sleep 0.5 seconds,input ENTER key, Spend 0.5500116348266602 seconds
2019-10-31 20:47:12,156 - root - INFO - 选择数据中心:上海资源池
2019-10-31 20:47:12,421 - root - INFO - SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.26428866386413574 seconds
2019-10-31 20:47:13,017 - root - INFO - SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 上海资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5934147834777832 seconds
2019-10-31 20:47:14,334 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 1.315446138381958 seconds
2019-10-31 20:47:14,604 - root - INFO - SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.26826047897338867 seconds
2019-10-31 20:47:14,833 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.22739839553833008 seconds
2019-10-31 20:47:16,105 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.27025318145751953 seconds
2019-10-31 20:47:36,362 - root - INFO - SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.25431370735168457 seconds
2019-10-31 20:47:36,393 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.030919313430786133 seconds
2019-10-31 20:47:36,416 - root - INFO - SUCCESS Get element text element: <xpath->//td[contains(.,'DC2')]/../td[3]>, Spend 0.02294135093688965 seconds
2019-10-31 20:47:36,417 - root - INFO - ############################### End ###############################

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,840 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>测试报告</title>
<meta name="generator" content="HTMLTestRunner 0.8.2"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css" media="screen">
body { font-family: verdana, arial, helvetica, sans-serif; font-size: 80%; }
table { font-size: 100%; }
pre { }
/* -- heading ---------------------------------------------------------------------- */
h1 {
font-size: 16pt;
color: gray;
}
.heading {
margin-top: 0ex;
margin-bottom: 1ex;
}
.heading .attribute {
margin-top: 1ex;
margin-bottom: 0;
}
.heading .description {
margin-top: 4ex;
margin-bottom: 6ex;
}
/* -- css div popup ------------------------------------------------------------------------ */
a.popup_link {
}
a.popup_link:hover {
color: red;
}
.popup_window {
display: none;
position: relative;
left: 0px;
top: 0px;
/*border: solid #627173 1px; */
padding: 10px;
background-color: #E6E6D6;
font-family: "Lucida Console", "Courier New", Courier, monospace;
text-align: left;
font-size: 8pt;
width: 500px;
}
}
/* -- report ------------------------------------------------------------------------ */
#show_detail_line {
margin-top: 3ex;
margin-bottom: 1ex;
}
#result_table {
width: 80%;
border-collapse: collapse;
border: 1px solid #777;
}
#header_row {
font-weight: bold;
color: white;
background-color: #777;
}
#result_table td {
border: 1px solid #777;
padding: 2px;
}
#total_row { font-weight: bold; }
.passClass { background-color: #6c6; }
.failClass { background-color: #c60; }
.errorClass { background-color: #c00; }
.passCase { color: #6c6; }
.failCase { color: #c60; font-weight: bold; }
.errorCase { color: #c00; font-weight: bold; }
.hiddenRow { display: none; }
.testcase { margin-left: 2em; }
/* -- ending ---------------------------------------------------------------------- */
#ending {
}
</style>
</head>
<body>
<script language="javascript" type="text/javascript"><!--
output_list = Array();
/* level - 0:Summary; 1:Failed; 2:All */
function showCase(level) {
trs = document.getElementsByTagName("tr");
for (var i = 0; i < trs.length; i++) {
tr = trs[i];
id = tr.id;
if (id.substr(0,2) == 'ft') {
if (level < 1) {
tr.className = 'hiddenRow';
}
else {
tr.className = '';
}
}
if (id.substr(0,2) == 'pt') {
if (level > 1) {
tr.className = '';
}
else {
tr.className = 'hiddenRow';
}
}
}
}
function showClassDetail(cid, count) {
var id_list = Array(count);
var toHide = 1;
for (var i = 0; i < count; i++) {
tid0 = 't' + cid.substr(1) + '.' + (i+1);
tid = 'f' + tid0;
tr = document.getElementById(tid);
if (!tr) {
tid = 'p' + tid0;
tr = document.getElementById(tid);
}
id_list[i] = tid;
if (tr.className) {
toHide = 0;
}
}
for (var i = 0; i < count; i++) {
tid = id_list[i];
if (toHide) {
document.getElementById('div_'+tid).style.display = 'none'
document.getElementById(tid).className = 'hiddenRow';
}
else {
document.getElementById(tid).className = '';
}
}
}
function showTestDetail(div_id){
var details_div = document.getElementById(div_id)
var displayState = details_div.style.display
// alert(displayState)
if (displayState != 'block' ) {
displayState = 'block'
details_div.style.display = 'block'
}
else {
details_div.style.display = 'none'
}
}
function html_escape(s) {
s = s.replace(/&/g,'&amp;');
s = s.replace(/</g,'&lt;');
s = s.replace(/>/g,'&gt;');
return s;
}
/* obsoleted by detail in <div>
function showOutput(id, name) {
var w = window.open("", //url
name,
"resizable,scrollbars,status,width=800,height=450");
d = w.document;
d.write("<pre>");
d.write(html_escape(output_list[id]));
d.write("\n");
d.write("<a href='javascript:window.close()'>close</a>\n");
d.write("</pre>\n");
d.close();
}
*/
--></script>
<div class='heading'>
<h1>测试报告</h1>
<p class='attribute'><strong>Start Time:</strong> 2019-10-29 18:02:29</p>
<p class='attribute'><strong>Duration:</strong> 0:04:19.930879</p>
<p class='attribute'><strong>Status:</strong> Pass 4 Failure 1 Error 8</p>
<p class='description'>Test the import testcase</p>
</div>
<p id='show_detail_line'>Show
<a href='javascript:showCase(0)'>Summary</a>
<a href='javascript:showCase(1)'>Failed</a>
<a href='javascript:showCase(2)'>All</a>
</p>
<table id='result_table'>
<colgroup>
<col align='left' />
<col align='right' />
<col align='right' />
<col align='right' />
<col align='right' />
<col align='right' />
</colgroup>
<tr id='header_row'>
<td>Test Group/Test case</td>
<td>Count</td>
<td>Pass</td>
<td>Fail</td>
<td>Error</td>
<td>View</td>
</tr>
<tr class='passClass'>
<td>test_01_create_user.TestCreateUser: 登录测试</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td><a href="javascript:showClassDetail('c1',1)">Detail</a></td>
</tr>
<tr id='pt1.1' class='hiddenRow'>
<td class='none'><div class='testcase'>test_create_user</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt1.1')" >
pass</a>
<div id='div_pt1.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_pt1.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
pt1.1:
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='passClass'>
<td>test_02_allocation_domain_administrator.TestAllDomainAdmin: 登录测试</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td><a href="javascript:showClassDetail('c2',1)">Detail</a></td>
</tr>
<tr id='pt2.1' class='hiddenRow'>
<td class='none'><div class='testcase'>test_allocation_domain_admin</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt2.1')" >
pass</a>
<div id='div_pt2.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_pt2.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
pt2.1:
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='errorClass'>
<td>test_03_create_tenant.TestTeant: 登录测试</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td><a href="javascript:showClassDetail('c3',1)">Detail</a></td>
</tr>
<tr id='ft3.1' class='none'>
<td class='errorCase'><div class='testcase'>test_create</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft3.1')" >
error</a>
<div id='div_ft3.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft3.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft3.1: Traceback (most recent call last):
File "H:\cmp\testcase\test_03_create_tenant.py", line 36, in test_create
a = self.dr.get_text("id-&gt;card")
File "H:\cmp\public\common\pyselenium.py", line 403, in get_text
self.element_wait(css)
File "H:\cmp\public\common\pyselenium.py", line 83, in element_wait
WebDriverWait(self.driver, secs, 1).until(EC.presence_of_element_located((By.ID, value)), messages)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\support\wait.py", line 80, in until
raise TimeoutException(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: Element: id-&gt;card not found in 5 seconds.
Traceback (most recent call last):
File "H:\cmp\testcase\test_03_create_tenant.py", line 36, in test_create
a = self.dr.get_text("id-&gt;card")
File "H:\cmp\public\common\pyselenium.py", line 403, in get_text
self.element_wait(css)
File "H:\cmp\public\common\pyselenium.py", line 83, in element_wait
WebDriverWait(self.driver, secs, 1).until(EC.presence_of_element_located((By.ID, value)), messages)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\support\wait.py", line 80, in until
raise TimeoutException(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: Element: id-&gt;card not found in 5 seconds.
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='passClass'>
<td>test_04_create_auth_user.TestCreateUser: 登录测试</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td><a href="javascript:showClassDetail('c4',1)">Detail</a></td>
</tr>
<tr id='pt4.1' class='hiddenRow'>
<td class='none'><div class='testcase'>test_create_authuser</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt4.1')" >
pass</a>
<div id='div_pt4.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_pt4.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
pt4.1:
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='errorClass'>
<td>test_05_create_project.TestProject: 登录测试</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td><a href="javascript:showClassDetail('c5',1)">Detail</a></td>
</tr>
<tr id='ft5.1' class='none'>
<td class='errorCase'><div class='testcase'>test_create_project</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft5.1')" >
error</a>
<div id='div_ft5.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft5.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft5.1: Traceback (most recent call last):
File "H:\cmp\testcase\test_05_create_project.py", line 31, in test_create_project
pac.create_project(p_data["tenantname"],p_data["projectname"],p_data["projectdesc"])
File "H:\cmp\public\appModel\projectAction.py", line 26, in create_project
self.propg.select_zzjg(tenantname)
File "H:\cmp\public\pages\authProjectPage.py", line 36, in select_zzjg
self.dr.click("xpath-&gt;//a[contains(text(),'%s')]"%value)
File "H:\cmp\public\common\pyselenium.py", line 213, in click
self.element_wait(css)
File "H:\cmp\public\common\pyselenium.py", line 91, in element_wait
WebDriverWait(self.driver, secs, 1).until(EC.presence_of_element_located((By.XPATH, value)), messages)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\support\wait.py", line 80, in until
raise TimeoutException(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: Element: xpath-&gt;//a[contains(text(),'wuzs_tenant_10236')] not found in 5 seconds.
Traceback (most recent call last):
File "H:\cmp\testcase\test_05_create_project.py", line 31, in test_create_project
pac.create_project(p_data["tenantname"],p_data["projectname"],p_data["projectdesc"])
File "H:\cmp\public\appModel\projectAction.py", line 26, in create_project
self.propg.select_zzjg(tenantname)
File "H:\cmp\public\pages\authProjectPage.py", line 36, in select_zzjg
self.dr.click("xpath-&gt;//a[contains(text(),'%s')]"%value)
File "H:\cmp\public\common\pyselenium.py", line 213, in click
self.element_wait(css)
File "H:\cmp\public\common\pyselenium.py", line 91, in element_wait
WebDriverWait(self.driver, secs, 1).until(EC.presence_of_element_located((By.XPATH, value)), messages)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\support\wait.py", line 80, in until
raise TimeoutException(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: Element: xpath-&gt;//a[contains(text(),'wuzs_tenant_10236')] not found in 5 seconds.
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='errorClass'>
<td>test_06_create_region.TestCreateRegion: 测试添加资源节点</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td><a href="javascript:showClassDetail('c6',1)">Detail</a></td>
</tr>
<tr id='ft6.1' class='none'>
<td class='errorCase'><div class='testcase'>test_create_region</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft6.1')" >
error</a>
<div id='div_ft6.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft6.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft6.1: Traceback (most recent call last):
File "H:\cmp\testcase\test_06_create_region.py", line 37, in test_create_region
srmpg.click_region_tree(p_data["regionname"])
File "H:\cmp\public\pages\sys_regionMgrPage.py", line 60, in click_region_tree
self.dr.click("xpath-&gt;//a[contains(.,'%s')]/parent::li//child::i"%value)
File "H:\cmp\public\common\pyselenium.py", line 215, in click
el.click()
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\remote\webelement.py", line 80, in click
self._execute(Command.CLICK_ELEMENT)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\remote\webelement.py", line 633, in _execute
return self._parent.execute(command, params)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.ElementClickInterceptedException: Message: Element &lt;i class="node-icon"&gt; is not clickable at point (257,146) because another element &lt;div class="modal-scrollable"&gt; obscures it
Traceback (most recent call last):
File "H:\cmp\testcase\test_06_create_region.py", line 37, in test_create_region
srmpg.click_region_tree(p_data["regionname"])
File "H:\cmp\public\pages\sys_regionMgrPage.py", line 60, in click_region_tree
self.dr.click("xpath-&gt;//a[contains(.,'%s')]/parent::li//child::i"%value)
File "H:\cmp\public\common\pyselenium.py", line 215, in click
el.click()
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\remote\webelement.py", line 80, in click
self._execute(Command.CLICK_ELEMENT)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\remote\webelement.py", line 633, in _execute
return self._parent.execute(command, params)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.ElementClickInterceptedException: Message: Element &lt;i class="node-icon"&gt; is not clickable at point (257,146) because another element &lt;div class="modal-scrollable"&gt; obscures it
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='errorClass'>
<td>test_07_create_service.TestCreateService: 测试添加service</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>2</td>
<td><a href="javascript:showClassDetail('c7',2)">Detail</a></td>
</tr>
<tr id='ft7.1' class='none'>
<td class='errorCase'><div class='testcase'>test_create_service_openstack</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft7.1')" >
error</a>
<div id='div_ft7.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft7.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft7.1: Traceback (most recent call last):
File "H:\cmp\testcase\test_07_create_service.py", line 53, in test_create_service_openstack
self.arn.add_resource_service_node_vmware(p_data["regionname"], p_data["nodename"], p_data["servicename"],
KeyError: 'regionname'
Traceback (most recent call last):
File "H:\cmp\testcase\test_07_create_service.py", line 53, in test_create_service_openstack
self.arn.add_resource_service_node_vmware(p_data["regionname"], p_data["nodename"], p_data["servicename"],
KeyError: 'regionname'
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr id='ft7.2' class='none'>
<td class='errorCase'><div class='testcase'>test_create_service_vmware</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft7.2')" >
error</a>
<div id='div_ft7.2' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft7.2').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft7.2: Traceback (most recent call last):
File "H:\cmp\testcase\test_07_create_service.py", line 39, in test_create_service_vmware
self.arn.add_resource_service_node_vmware(p_data["regionname"],p_data["nodename"],p_data["servicename"],
KeyError: 'regionname'
Traceback (most recent call last):
File "H:\cmp\testcase\test_07_create_service.py", line 39, in test_create_service_vmware
self.arn.add_resource_service_node_vmware(p_data["regionname"],p_data["nodename"],p_data["servicename"],
KeyError: 'regionname'
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='errorClass'>
<td>test_08_create_endpoint.TestCreateEndpoint: 测试添加Endpoint</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>2</td>
<td><a href="javascript:showClassDetail('c8',2)">Detail</a></td>
</tr>
<tr id='ft8.1' class='none'>
<td class='errorCase'><div class='testcase'>test_openstack_endpoint</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft8.1')" >
error</a>
<div id='div_ft8.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft8.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft8.1: Traceback (most recent call last):
File "D:\Env\ui_auto\lib\site-packages\xlrd\book.py", line 474, in sheet_by_name
sheetx = self._sheet_names.index(sheet_name)
ValueError: 'enpoint' is not in list
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "H:\cmp\testcase\test_08_create_endpoint.py", line 63, in test_openstack_endpoint
p_data = datainfo.get_xls_to_dict("res_node_data.xlsx", "enpoint")[1]
File "H:\cmp\public\common\datainfo.py", line 19, in get_xls_to_dict
table = xls1.sheet_by_name(sheetname)
File "D:\Env\ui_auto\lib\site-packages\xlrd\book.py", line 476, in sheet_by_name
raise XLRDError('No sheet named &lt;%r&gt;' % sheet_name)
xlrd.biffh.XLRDError: No sheet named &lt;'enpoint'&gt;
Traceback (most recent call last):
File "D:\Env\ui_auto\lib\site-packages\xlrd\book.py", line 474, in sheet_by_name
sheetx = self._sheet_names.index(sheet_name)
ValueError: 'enpoint' is not in list
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "H:\cmp\testcase\test_08_create_endpoint.py", line 63, in test_openstack_endpoint
p_data = datainfo.get_xls_to_dict("res_node_data.xlsx", "enpoint")[1]
File "H:\cmp\public\common\datainfo.py", line 19, in get_xls_to_dict
table = xls1.sheet_by_name(sheetname)
File "D:\Env\ui_auto\lib\site-packages\xlrd\book.py", line 476, in sheet_by_name
raise XLRDError('No sheet named &lt;%r&gt;' % sheet_name)
xlrd.biffh.XLRDError: No sheet named &lt;'enpoint'&gt;
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr id='ft8.2' class='none'>
<td class='errorCase'><div class='testcase'>test_vmware_endpoint</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft8.2')" >
error</a>
<div id='div_ft8.2' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft8.2').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft8.2: Traceback (most recent call last):
File "D:\Env\ui_auto\lib\site-packages\xlrd\book.py", line 474, in sheet_by_name
sheetx = self._sheet_names.index(sheet_name)
ValueError: 'enpoint' is not in list
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "H:\cmp\testcase\test_08_create_endpoint.py", line 41, in test_vmware_endpoint
p_data = datainfo.get_xls_to_dict("res_node_data.xlsx", "enpoint")[0]
File "H:\cmp\public\common\datainfo.py", line 19, in get_xls_to_dict
table = xls1.sheet_by_name(sheetname)
File "D:\Env\ui_auto\lib\site-packages\xlrd\book.py", line 476, in sheet_by_name
raise XLRDError('No sheet named &lt;%r&gt;' % sheet_name)
xlrd.biffh.XLRDError: No sheet named &lt;'enpoint'&gt;
Traceback (most recent call last):
File "D:\Env\ui_auto\lib\site-packages\xlrd\book.py", line 474, in sheet_by_name
sheetx = self._sheet_names.index(sheet_name)
ValueError: 'enpoint' is not in list
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "H:\cmp\testcase\test_08_create_endpoint.py", line 41, in test_vmware_endpoint
p_data = datainfo.get_xls_to_dict("res_node_data.xlsx", "enpoint")[0]
File "H:\cmp\public\common\datainfo.py", line 19, in get_xls_to_dict
table = xls1.sheet_by_name(sheetname)
File "D:\Env\ui_auto\lib\site-packages\xlrd\book.py", line 476, in sheet_by_name
raise XLRDError('No sheet named &lt;%r&gt;' % sheet_name)
xlrd.biffh.XLRDError: No sheet named &lt;'enpoint'&gt;
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='failClass'>
<td>test_0_login.TestLoin: 登录测试</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>0</td>
<td><a href="javascript:showClassDetail('c9',1)">Detail</a></td>
</tr>
<tr id='ft9.1' class='none'>
<td class='failCase'><div class='testcase'>test_login</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft9.1')" >
fail</a>
<div id='div_ft9.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft9.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft9.1: Traceback (most recent call last):
File "H:\cmp\testcase\test_0_login.py", line 26, in test_login
self.assertIn("/csdp/portal/#/resourceUsage",self.dr.get_url())
AssertionError: '/csdp/portal/#/resourceUsage' not found in 'http://192.168.54.13/csdp/portal/#/'
Traceback (most recent call last):
File "H:\cmp\testcase\test_0_login.py", line 26, in test_login
self.assertIn("/csdp/portal/#/resourceUsage",self.dr.get_url())
AssertionError: '/csdp/portal/#/resourceUsage' not found in 'http://192.168.54.13/csdp/portal/#/'
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='passClass'>
<td>test_10_craete_vdc.TestCreateVDC</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td><a href="javascript:showClassDetail('c10',1)">Detail</a></td>
</tr>
<tr id='pt10.1' class='hiddenRow'>
<td class='none'><div class='testcase'>test_create_vdc</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt10.1')" >
pass</a>
<div id='div_pt10.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_pt10.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
pt10.1:
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr class='errorClass'>
<td>test_11_ceate_crate_vpool.TestCreateVpool</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td><a href="javascript:showClassDetail('c11',1)">Detail</a></td>
</tr>
<tr id='ft11.1' class='none'>
<td class='errorCase'><div class='testcase'>test_create_vpool</div></td>
<td colspan='5' align='center'>
<!--css div popup start-->
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft11.1')" >
error</a>
<div id='div_ft11.1' class="popup_window">
<div style='text-align: right; color:red;cursor:pointer'>
<a onfocus='this.blur();' onclick="document.getElementById('div_ft11.1').style.display = 'none' " >
[x]</a>
</div>
<pre>
ft11.1: Traceback (most recent call last):
File "H:\cmp\testcase\test_11_ceate_crate_vpool.py", line 32, in test_create_vpool
text = self.dr.get_text("xpath-&gt;//td")
File "H:\cmp\public\common\pyselenium.py", line 403, in get_text
self.element_wait(css)
File "H:\cmp\public\common\pyselenium.py", line 91, in element_wait
WebDriverWait(self.driver, secs, 1).until(EC.presence_of_element_located((By.XPATH, value)), messages)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\support\wait.py", line 80, in until
raise TimeoutException(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: Element: xpath-&gt;//td not found in 5 seconds.
Traceback (most recent call last):
File "H:\cmp\testcase\test_11_ceate_crate_vpool.py", line 32, in test_create_vpool
text = self.dr.get_text("xpath-&gt;//td")
File "H:\cmp\public\common\pyselenium.py", line 403, in get_text
self.element_wait(css)
File "H:\cmp\public\common\pyselenium.py", line 91, in element_wait
WebDriverWait(self.driver, secs, 1).until(EC.presence_of_element_located((By.XPATH, value)), messages)
File "D:\Env\ui_auto\lib\site-packages\selenium\webdriver\support\wait.py", line 80, in until
raise TimeoutException(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: Element: xpath-&gt;//td not found in 5 seconds.
</pre>
</div>
<!--css div popup end-->
</td>
</tr>
<tr id='total_row'>
<td>Total</td>
<td>13</td>
<td>4</td>
<td>1</td>
<td>8</td>
<td>&nbsp;</td>
</tr>
</table>
<div id='ending'>&nbsp;</div>
</body>
</html>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1 +0,0 @@
用户名wuzs_test_ui_auto_user

View File

@ -1 +0,0 @@
{"uuid": "e2762400-a499-4bf0-913a-648b3c93ef60", "children": ["6c20d920-c902-4077-8177-59b46426dbf6"], "befores": [{"name": "_Class__pytest_setup_class", "status": "passed", "start": 1572696073179, "stop": 1572696082707}], "afters": [{"name": "_Class__pytest_setup_class::0", "status": "passed", "start": 1572696110775, "stop": 1572696112260}], "start": 1572696073179, "stop": 1572696112260}

View File

@ -1,276 +0,0 @@
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:12893
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session HTTP/1.1" 200 736
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 8.747575521469116 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.27426958084106445 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5006577968597412 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.003991127014160156 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/17224594-3a6b-4602-befc-3a2fa22eac2e/clear {"id": "17224594-3a6b-4602-befc-3a2fa22eac2e"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/17224594-3a6b-4602-befc-3a2fa22eac2e/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/17224594-3a6b-4602-befc-3a2fa22eac2e/value {"text": "\u7cfb\u7edf\u7ba1\u7406\u5458", "value": ["\u7cfb", "\u7edf", "\u7ba1", "\u7406", "\u5458"], "id": "17224594-3a6b-4602-befc-3a2fa22eac2e"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/17224594-3a6b-4602-befc-3a2fa22eac2e/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05684804916381836 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/5b45908e-e26f-435c-b409-eb420a6535ec/clear {"id": "5b45908e-e26f-435c-b409-eb420a6535ec"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/5b45908e-e26f-435c-b409-eb420a6535ec/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/5b45908e-e26f-435c-b409-eb420a6535ec/value {"text": "123456", "value": ["1", "2", "3", "4", "5", "6"], "id": "5b45908e-e26f-435c-b409-eb420a6535ec"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/5b45908e-e26f-435c-b409-eb420a6535ec/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.037885189056396484 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/c3d11e72-d15a-45e6-b28b-621abf552f9f/clear {"id": "c3d11e72-d15a-45e6-b28b-621abf552f9f"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/c3d11e72-d15a-45e6-b28b-621abf552f9f/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/c3d11e72-d15a-45e6-b28b-621abf552f9f/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "c3d11e72-d15a-45e6-b28b-621abf552f9f"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/c3d11e72-d15a-45e6-b28b-621abf552f9f/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03690028190612793 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.003992557525634766 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/d35717b4-7a39-4bb3-b046-e7565842b6a6/click {"id": "d35717b4-7a39-4bb3-b046-e7565842b6a6"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element/d35717b4-7a39-4bb3-b046-e7565842b6a6/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7171103954315186 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.336400032043457 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//div[@class='col-md-3 padding-0']/form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 404 331
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_test_ui_auto_01,and sleep 0.5 seconds,input ENTER key, Spend 11.021672248840332 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.274528980255127 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element {"using": "xpath", "value": "//div[@class='col-md-3 padding-0']/form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "POST /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0/element HTTP/1.1" 404 331
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: ,and sleep 0.5 seconds,input ENTER key, Spend 11.025672197341919 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:12893/session/5b654906-0b15-4a9b-98f7-2b977f13eaa0 {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12893 "DELETE /session/5b654906-0b15-4a9b-98f7-2b977f13eaa0 HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 1.0481617450714111 seconds
INFO root:log.py:32 ############################### End ###############################
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:12968
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session HTTP/1.1" 200 736
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 9.256248950958252 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.2622988224029541 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4667532444000244 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.003983020782470703 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element/dc367659-6369-4010-8d4c-d4529f566ec3/clear {"id": "dc367659-6369-4010-8d4c-d4529f566ec3"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element/dc367659-6369-4010-8d4c-d4529f566ec3/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element/dc367659-6369-4010-8d4c-d4529f566ec3/value {"text": "\u7cfb\u7edf\u7ba1\u7406\u5458", "value": ["\u7cfb", "\u7edf", "\u7ba1", "\u7406", "\u5458"], "id": "dc367659-6369-4010-8d4c-d4529f566ec3"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element/dc367659-6369-4010-8d4c-d4529f566ec3/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.05883979797363281 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element/d73a8827-b129-4e10-816d-51e4140dda19/clear {"id": "d73a8827-b129-4e10-816d-51e4140dda19"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element/d73a8827-b129-4e10-816d-51e4140dda19/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element/d73a8827-b129-4e10-816d-51e4140dda19/value {"text": "123456", "value": ["1", "2", "3", "4", "5", "6"], "id": "d73a8827-b129-4e10-816d-51e4140dda19"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element/d73a8827-b129-4e10-816d-51e4140dda19/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.03889775276184082 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element/c062a675-367b-4a91-922b-bf4535b3304d/clear {"id": "c062a675-367b-4a91-922b-bf4535b3304d"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element/c062a675-367b-4a91-922b-bf4535b3304d/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element/c062a675-367b-4a91-922b-bf4535b3304d/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "c062a675-367b-4a91-922b-bf4535b3304d"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element/c062a675-367b-4a91-922b-bf4535b3304d/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03789639472961426 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.00399017333984375 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element/4d6c8759-9ed3-4d36-b1f0-5ee294366487/click {"id": "4d6c8759-9ed3-4d36-b1f0-5ee294366487"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element/4d6c8759-9ed3-4d36-b1f0-5ee294366487/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7211229801177979 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.3553249835968018 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//div[@class='col-md-3 padding-0']/form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 404 331
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_test_ui_auto_01,and sleep 0.5 seconds,input ENTER key, Spend 11.011559247970581 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 0.6153008937835693 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72/element {"using": "xpath", "value": "//div[@class='col-md-3 padding-0']/form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "POST /session/969125c6-2571-4b94-be85-362138a29a72/element HTTP/1.1" 404 331
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: ,and sleep 0.5 seconds,input ENTER key, Spend 11.081599473953247 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:12968/session/969125c6-2571-4b94-be85-362138a29a72 {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12968 "DELETE /session/969125c6-2571-4b94-be85-362138a29a72 HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 1.044172763824463 seconds
INFO root:log.py:32 ############################### End ###############################
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:13034
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session HTTP/1.1" 200 736
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 9.299134731292725 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.26430249214172363 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5036032199859619 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.0029916763305664062 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/5882d797-fa38-4430-b2c4-2670c8cb1dba/clear {"id": "5882d797-fa38-4430-b2c4-2670c8cb1dba"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/5882d797-fa38-4430-b2c4-2670c8cb1dba/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/5882d797-fa38-4430-b2c4-2670c8cb1dba/value {"text": "\u7cfb\u7edf\u7ba1\u7406\u5458", "value": ["\u7cfb", "\u7edf", "\u7ba1", "\u7406", "\u5458"], "id": "5882d797-fa38-4430-b2c4-2670c8cb1dba"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/5882d797-fa38-4430-b2c4-2670c8cb1dba/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06083965301513672 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/45010be2-678d-4749-aacc-60409e717d97/clear {"id": "45010be2-678d-4749-aacc-60409e717d97"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/45010be2-678d-4749-aacc-60409e717d97/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/45010be2-678d-4749-aacc-60409e717d97/value {"text": "123456", "value": ["1", "2", "3", "4", "5", "6"], "id": "45010be2-678d-4749-aacc-60409e717d97"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/45010be2-678d-4749-aacc-60409e717d97/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.0388948917388916 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/2a908dc7-2336-47c0-9c7b-4f5b5320ea70/clear {"id": "2a908dc7-2336-47c0-9c7b-4f5b5320ea70"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/2a908dc7-2336-47c0-9c7b-4f5b5320ea70/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/2a908dc7-2336-47c0-9c7b-4f5b5320ea70/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "2a908dc7-2336-47c0-9c7b-4f5b5320ea70"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/2a908dc7-2336-47c0-9c7b-4f5b5320ea70/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.03790092468261719 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.0029909610748291016 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/aabe00ec-5daf-4a69-a35d-f9d2315d7ef8/click {"id": "aabe00ec-5daf-4a69-a35d-f9d2315d7ef8"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element/aabe00ec-5daf-4a69-a35d-f9d2315d7ef8/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7211239337921143 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.4081847667694092 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//div[@class='col-md-3 padding-0']/form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 404 331
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: wuzs_test_ui_auto_01,and sleep 0.5 seconds,input ENTER key, Spend 11.011735200881958 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/tenant, Spend 1.2426726818084717 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element {"using": "xpath", "value": "//div[@class='col-md-3 padding-0']/form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "POST /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd/element HTTP/1.1" 404 331
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable element <xpath->//div[@class='col-md-3 padding-0']/form/div/div/input> type content: ,and sleep 0.5 seconds,input ENTER key, Spend 11.016442775726318 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:13034/session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:13034 "DELETE /session/2368cf97-e0b9-4c22-9c1b-ade974a6a7dd HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 1.1468818187713623 seconds
INFO root:log.py:32 ############################### End ###############################

View File

@ -1 +0,0 @@
{"uuid": "d5abcc10-9cab-4908-97a0-df86e4a0c639", "children": ["5059e0a0-e7a8-4f5e-b9bd-c6f30c07f02e"], "befores": [{"name": "_Class__pytest_setup_class", "status": "passed", "start": 1572687219081, "stop": 1572687229638}], "afters": [{"name": "_Class__pytest_setup_class::0", "status": "passed", "start": 1572687248979, "stop": 1572687250925}], "start": 1572687219081, "stop": 1572687250926}

View File

@ -1 +0,0 @@
域名称:河南

View File

@ -1 +0,0 @@
{"name": "test_delete_openstack_endpoint", "status": "passed", "description": "\n 测试删除openstackendpoint\n :return:\n ", "attachments": [{"name": "log", "source": "0a58b339-c66b-45ec-ac4e-b324e1d1d54a-attachment.txt", "type": "text/plain"}], "start": 1572702191111, "stop": 1572702203246, "uuid": "af6148e8-a415-4260-a4fb-253ab35ffe4e", "historyId": "fe057fe1de3fcfe5ae80ad0116cccbf5", "testCaseId": "92959492d8f383f8a5288ee2ada9e9be", "fullName": "testcase.test_17_delete_endpoint.TestDeleteEndpoint#test_delete_openstack_endpoint", "labels": [{"name": "parentSuite", "value": "testcase"}, {"name": "suite", "value": "test_17_delete_endpoint"}, {"name": "subSuite", "value": "TestDeleteEndpoint"}, {"name": "host", "value": "wuzs"}, {"name": "thread", "value": "6824-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "testcase.test_17_delete_endpoint"}]}

View File

@ -1 +0,0 @@
endpoint:http://192.168.54.103:5000/v3

View File

@ -1,189 +0,0 @@
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:10222
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session HTTP/1.1" 200 735
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 9.277199029922485 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.3141946792602539 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.003025531768798828 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6312751770019531 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/dc693702-d0e8-4759-a84c-0b761339071c/clear {"id": "dc693702-d0e8-4759-a84c-0b761339071c"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/dc693702-d0e8-4759-a84c-0b761339071c/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/dc693702-d0e8-4759-a84c-0b761339071c/value {"text": "wuzs_test_ui_auto", "value": ["w", "u", "z", "s", "_", "t", "e", "s", "t", "_", "u", "i", "_", "a", "u", "t", "o"], "id": "dc693702-d0e8-4759-a84c-0b761339071c"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/dc693702-d0e8-4759-a84c-0b761339071c/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_test_ui_auto, Spend 0.08971691131591797 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/b174d1d3-7008-4885-8ab8-93dd18d45b1b/clear {"id": "b174d1d3-7008-4885-8ab8-93dd18d45b1b"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/b174d1d3-7008-4885-8ab8-93dd18d45b1b/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/b174d1d3-7008-4885-8ab8-93dd18d45b1b/value {"text": "1qaz!QAZ", "value": ["1", "q", "a", "z", "!", "Q", "A", "Z"], "id": "b174d1d3-7008-4885-8ab8-93dd18d45b1b"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/b174d1d3-7008-4885-8ab8-93dd18d45b1b/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.05484724044799805 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/5e87241f-0a67-4050-b365-c3247b179469/clear {"id": "5e87241f-0a67-4050-b365-c3247b179469"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/5e87241f-0a67-4050-b365-c3247b179469/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/5e87241f-0a67-4050-b365-c3247b179469/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "5e87241f-0a67-4050-b365-c3247b179469"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/5e87241f-0a67-4050-b365-c3247b179469/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.051661014556884766 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/99de60d5-b9bb-4a19-8dbd-84b5eb865928/click {"id": "99de60d5-b9bb-4a19-8dbd-84b5eb865928"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/99de60d5-b9bb-4a19-8dbd-84b5eb865928/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7378411293029785 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 2.0006518363952637 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.0059850215911865234 seconds
INFO root:log.py:32 创建VMware虚拟化服务节点服务节点
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//a[contains(.,'\u6cb3\u5357')]/parent::li//child::i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//a[contains(.,'\u6cb3\u5357')]/parent::li//child::i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/bfc838f7-69de-4b9b-9dba-f1edb97791fa/click {"id": "bfc838f7-69de-4b9b-9dba-f1edb97791fa"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/bfc838f7-69de-4b9b-9dba-f1edb97791fa/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.3170349597930908 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//a[contains(text(),'\u6cb3\u5357\u8d44\u6e90\u6c60')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//a[contains(text(),'\u6cb3\u5357\u8d44\u6e90\u6c60')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/46beaffe-199a-400e-bfde-d764cb1f30fc/click {"id": "46beaffe-199a-400e-bfde-d764cb1f30fc"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/46beaffe-199a-400e-bfde-d764cb1f30fc/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//a[contains(text(),'河南资源池')]>, Spend 0.40976667404174805 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//button[2]/i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//button[2]/i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/7b7f7cc4-c68b-44fa-8f17-9f1e7e9e6d2c/click {"id": "7b7f7cc4-c68b-44fa-8f17-9f1e7e9e6d2c"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/7b7f7cc4-c68b-44fa-8f17-9f1e7e9e6d2c/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[2]/i>, Spend 0.36402130126953125 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "css selector", "value": "[name=\"serviceName\"]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "css selector", "value": "[name=\"serviceName\"]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/accb5981-d61d-44e3-a1c4-aeaf74726c28/clear {"id": "accb5981-d61d-44e3-a1c4-aeaf74726c28"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/accb5981-d61d-44e3-a1c4-aeaf74726c28/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/accb5981-d61d-44e3-a1c4-aeaf74726c28/value {"text": "vmware_api", "value": ["v", "m", "w", "a", "r", "e", "_", "a", "p", "i"], "id": "accb5981-d61d-44e3-a1c4-aeaf74726c28"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/accb5981-d61d-44e3-a1c4-aeaf74726c28/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <name->serviceName> content: vmware_api, Spend 0.1634235382080078 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//div[2]/div/div/div/span/span[2]/span"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//div[2]/div/div/div/span/span[2]/span"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/874c73e2-c31c-4061-89a9-614c74b56989/click {"id": "874c73e2-c31c-4061-89a9-614c74b56989"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/874c73e2-c31c-4061-89a9-614c74b56989/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//div[2]/div/div/div/span/span[2]/span>, Spend 0.2732679843902588 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//div/div[2]/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "//div/div[2]/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/3fd72282-b735-45ad-9ca3-333c5af8bf1f/clear {"id": "3fd72282-b735-45ad-9ca3-333c5af8bf1f"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/3fd72282-b735-45ad-9ca3-333c5af8bf1f/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/3fd72282-b735-45ad-9ca3-333c5af8bf1f/value {"text": "vmware", "value": ["v", "m", "w", "a", "r", "e"], "id": "3fd72282-b735-45ad-9ca3-333c5af8bf1f"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/3fd72282-b735-45ad-9ca3-333c5af8bf1f/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/3fd72282-b735-45ad-9ca3-333c5af8bf1f/value {"text": "\ue007", "value": ["\ue007"], "id": "3fd72282-b735-45ad-9ca3-333c5af8bf1f"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/3fd72282-b735-45ad-9ca3-333c5af8bf1f/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Element <xpath->//div/div[2]/div/div/input> type content: vmware,and sleep 0.5 seconds,input ENTER key, Spend 0.6412863731384277 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "css selector", "value": "[name=\"authenInfo\"]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "css selector", "value": "[name=\"authenInfo\"]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/fa6e5017-be14-4277-b3d9-770dd5748dc6/clear {"id": "fa6e5017-be14-4277-b3d9-770dd5748dc6"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/fa6e5017-be14-4277-b3d9-770dd5748dc6/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/fa6e5017-be14-4277-b3d9-770dd5748dc6/value {"text": "administrator@vsphere.local", "value": ["a", "d", "m", "i", "n", "i", "s", "t", "r", "a", "t", "o", "r", "@", "v", "s", "p", "h", "e", "r", "e", ".", "l", "o", "c", "a", "l"], "id": "fa6e5017-be14-4277-b3d9-770dd5748dc6"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/fa6e5017-be14-4277-b3d9-770dd5748dc6/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <name->authenInfo> content: administrator@vsphere.local, Spend 0.2513279914855957 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "(//input[@name='authenInfo'])[2]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "(//input[@name='authenInfo'])[2]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/d0f38cd8-3ee0-4ab4-b47c-e92dca030437/clear {"id": "d0f38cd8-3ee0-4ab4-b47c-e92dca030437"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/d0f38cd8-3ee0-4ab4-b47c-e92dca030437/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/d0f38cd8-3ee0-4ab4-b47c-e92dca030437/value {"text": "P@ssw0rd", "value": ["P", "@", "s", "s", "w", "0", "r", "d"], "id": "d0f38cd8-3ee0-4ab4-b47c-e92dca030437"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/d0f38cd8-3ee0-4ab4-b47c-e92dca030437/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath->(//input[@name='authenInfo'])[2]> content: P@ssw0rd, Spend 0.08676981925964355 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "css selector", "value": "#serAddAndEdit .btn-primary"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "css selector", "value": "#serAddAndEdit .btn-primary"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/0cb519ff-2c7b-41c6-9485-f8f1fa7a042a/click {"id": "0cb519ff-2c7b-41c6-9485-f8f1fa7a042a"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element/0cb519ff-2c7b-41c6-9485-f8f1fa7a042a/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <css->#serAddAndEdit .btn-primary>, Spend 0.22739124298095703 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.010968923568725586 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:10222/session/2703f3dc-de2d-43fb-a40e-38633fed479e/element {"using": "xpath", "value": "(//a[contains(text(),'vmware_api')])"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:10222 "POST /session/2703f3dc-de2d-43fb-a40e-38633fed479e/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Element: <xpath->(//a[contains(text(),'vmware_api')])> is exist, Spend 0.007979154586791992 seconds

View File

@ -1,168 +0,0 @@
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:12398
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session HTTP/1.1" 200 736
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 8.757580757141113 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.31115150451660156 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4837040901184082 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.002993345260620117 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element/a94bca8c-8f55-452f-af20-811ada1be3e0/clear {"id": "a94bca8c-8f55-452f-af20-811ada1be3e0"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element/a94bca8c-8f55-452f-af20-811ada1be3e0/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element/a94bca8c-8f55-452f-af20-811ada1be3e0/value {"text": "wuzs_test_ui_auto", "value": ["w", "u", "z", "s", "_", "t", "e", "s", "t", "_", "u", "i", "_", "a", "u", "t", "o"], "id": "a94bca8c-8f55-452f-af20-811ada1be3e0"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element/a94bca8c-8f55-452f-af20-811ada1be3e0/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_test_ui_auto, Spend 0.07480001449584961 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element/1b98b36a-45ee-4df9-a1ff-ed5099a52997/clear {"id": "1b98b36a-45ee-4df9-a1ff-ed5099a52997"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element/1b98b36a-45ee-4df9-a1ff-ed5099a52997/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element/1b98b36a-45ee-4df9-a1ff-ed5099a52997/value {"text": "1qaz!QAZ", "value": ["1", "q", "a", "z", "!", "Q", "A", "Z"], "id": "1b98b36a-45ee-4df9-a1ff-ed5099a52997"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element/1b98b36a-45ee-4df9-a1ff-ed5099a52997/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.03789854049682617 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element/4c6dbb9c-d534-4eb4-ad26-2990dfa43d4c/clear {"id": "4c6dbb9c-d534-4eb4-ad26-2990dfa43d4c"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element/4c6dbb9c-d534-4eb4-ad26-2990dfa43d4c/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element/4c6dbb9c-d534-4eb4-ad26-2990dfa43d4c/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "4c6dbb9c-d534-4eb4-ad26-2990dfa43d4c"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element/4c6dbb9c-d534-4eb4-ad26-2990dfa43d4c/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.034906864166259766 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.003988504409790039 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element/83438638-b297-4b56-83e6-c967f73ae93b/click {"id": "83438638-b297-4b56-83e6-c967f73ae93b"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element/83438638-b297-4b56-83e6-c967f73ae93b/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7201287746429443 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.438091516494751 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99/element {"using": "xpath", "value": "//div[@class='table-toolbar']/div/div//form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "POST /session/72457aa1-a519-4258-99b7-860f3508dd99/element HTTP/1.1" 404 335
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_test_ui_auto_user,and sleep 0.5 seconds,input ENTER key, Spend 11.024544954299927 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:12398/session/72457aa1-a519-4258-99b7-860f3508dd99 {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12398 "DELETE /session/72457aa1-a519-4258-99b7-860f3508dd99 HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 1.058168888092041 seconds
INFO root:log.py:32 ############################### End ###############################
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:12462
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session HTTP/1.1" 200 736
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 8.762537956237793 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.29620933532714844 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 0.4876868724822998 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.00697779655456543 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element/98159335-a8c0-4c0a-b13e-16285e61f027/clear {"id": "98159335-a8c0-4c0a-b13e-16285e61f027"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element/98159335-a8c0-4c0a-b13e-16285e61f027/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element/98159335-a8c0-4c0a-b13e-16285e61f027/value {"text": "wuzs_test_ui_auto", "value": ["w", "u", "z", "s", "_", "t", "e", "s", "t", "_", "u", "i", "_", "a", "u", "t", "o"], "id": "98159335-a8c0-4c0a-b13e-16285e61f027"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element/98159335-a8c0-4c0a-b13e-16285e61f027/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_test_ui_auto, Spend 0.068817138671875 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element/17a11725-8bfc-4de8-89a3-df4e8ce59a66/clear {"id": "17a11725-8bfc-4de8-89a3-df4e8ce59a66"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element/17a11725-8bfc-4de8-89a3-df4e8ce59a66/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element/17a11725-8bfc-4de8-89a3-df4e8ce59a66/value {"text": "1qaz!QAZ", "value": ["1", "q", "a", "z", "!", "Q", "A", "Z"], "id": "17a11725-8bfc-4de8-89a3-df4e8ce59a66"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element/17a11725-8bfc-4de8-89a3-df4e8ce59a66/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.043883562088012695 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element/ae1f14fd-a457-4f68-b3ae-b1a6c1ecb37c/clear {"id": "ae1f14fd-a457-4f68-b3ae-b1a6c1ecb37c"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element/ae1f14fd-a457-4f68-b3ae-b1a6c1ecb37c/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element/ae1f14fd-a457-4f68-b3ae-b1a6c1ecb37c/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "ae1f14fd-a457-4f68-b3ae-b1a6c1ecb37c"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element/ae1f14fd-a457-4f68-b3ae-b1a6c1ecb37c/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.0359044075012207 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.0019927024841308594 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element/4002e4d5-3c8d-44ff-89cb-2d959f3dcbe4/click {"id": "4002e4d5-3c8d-44ff-89cb-2d959f3dcbe4"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element/4002e4d5-3c8d-44ff-89cb-2d959f3dcbe4/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7210757732391357 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/adminManage/auth/user, Spend 1.4122190475463867 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391/element {"using": "xpath", "value": "//div[@class='table-toolbar']/div/div//form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "POST /session/678434eb-e151-49bd-8618-d1b86d944391/element HTTP/1.1" 404 335
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_test_ui_auto_user,and sleep 0.5 seconds,input ENTER key, Spend 11.02071738243103 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:12462/session/678434eb-e151-49bd-8618-d1b86d944391 {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12462 "DELETE /session/678434eb-e151-49bd-8618-d1b86d944391 HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 1.1748199462890625 seconds
INFO root:log.py:32 ############################### End ###############################

View File

@ -1 +0,0 @@
{"name": "test_allocation_domain_admin", "status": "failed", "statusDetails": {"message": "AssertionError: assert '2' == '1'\n - 2\n + 1", "trace": "self = <test_02_allocation_domain_administrator.TestAllDomainAdmin object at 0x058CEFD0>\n\n @pytest.mark.flaky(reruns=3)\n def test_allocation_domain_admin(self):\n \n login = Login(self.dr)\n login.login(\"系统管理员\",'123456')\n datas = datainfo.get_xls_to_dict(\"user.xlsx\", \"Sheet1\")[0]\n upage = sysUorgMgrPage.SysUorgMgrPage(self.dr)\n ua = userAction.UserAction(self.dr)\n ua.allocation_domain_administrator(datas[\"mgrname\"],datas[\"username\"])\n #校验已分配域管理角色\n upage.open_uorgmgrpage()\n upage.input_select_user(datas[\"username\"])\n sleep(2)\n character = self.dr.get_text(\"css->.ng-scope:nth-child(4) > .wordBreak\" )\n> assert character == \"1\"\nE AssertionError: assert '2' == '1'\nE - 2\nE + 1\n\ntestcase\\test_02_allocation_domain_administrator.py:35: AssertionError"}, "attachments": [{"name": "log", "source": "69c84dd7-5187-40fb-8272-c68a3615e35c-attachment.txt", "type": "text/plain"}], "start": 1572683279761, "stop": 1572683297097, "uuid": "319fce28-a2c7-492a-8486-6ad7c6cfc75c", "historyId": "c8e426b9b0e5fb2d7f7bb3cad9bf59ac", "testCaseId": "b399237a240b3ba9f087b571b2b7c6bf", "fullName": "testcase.test_02_allocation_domain_administrator.TestAllDomainAdmin#test_allocation_domain_admin", "labels": [{"name": "parentSuite", "value": "testcase"}, {"name": "suite", "value": "test_02_allocation_domain_administrator"}, {"name": "subSuite", "value": "TestAllDomainAdmin"}, {"name": "host", "value": "wuzs"}, {"name": "thread", "value": "5348-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "testcase.test_02_allocation_domain_administrator"}]}

View File

@ -1 +0,0 @@
{"uuid": "267670bc-d7ff-4877-86bc-1934542dbe53", "children": ["a9cb2cc8-d0b2-430a-83a8-566d487964f8"], "befores": [{"name": "_Class__pytest_setup_class", "status": "passed", "start": 1572709611114, "stop": 1572709620658}], "afters": [{"name": "_Class__pytest_setup_class::0", "status": "passed", "start": 1572709640227, "stop": 1572709641563}], "start": 1572709611114, "stop": 1572709641563}

View File

@ -1 +0,0 @@
{"name": "test_delete_openstack_endpoint", "status": "passed", "description": "\n 测试删除openstackendpoint\n :return:\n ", "steps": [{"name": "删除endpoint", "status": "passed", "attachments": [{"source": "61b4076e-34a6-46a5-abf1-7817692a62d3-attachment.attach"}, {"source": "4df29cb4-f555-4a8a-a424-61b9af00932a-attachment.attach"}, {"source": "a29512ec-b4d5-40c1-8ed2-c467430571b9-attachment.attach"}], "start": 1572757303565, "stop": 1572757303569}], "attachments": [{"name": "log", "source": "f449144f-5a8e-4943-80be-37fe59489e90-attachment.txt", "type": "text/plain"}], "start": 1572757303553, "stop": 1572757317759, "uuid": "74dff7ff-b8ab-4e72-9242-91d5aabf9f36", "historyId": "fe057fe1de3fcfe5ae80ad0116cccbf5", "testCaseId": "92959492d8f383f8a5288ee2ada9e9be", "fullName": "testcase.test_17_delete_endpoint.TestDeleteEndpoint#test_delete_openstack_endpoint", "labels": [{"name": "feature", "value": "资源节点管理"}, {"name": "story", "value": "openstack删除endpoint"}, {"name": "parentSuite", "value": "testcase"}, {"name": "suite", "value": "test_17_delete_endpoint"}, {"name": "subSuite", "value": "TestDeleteEndpoint"}, {"name": "host", "value": "wuzs"}, {"name": "thread", "value": "3048-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "testcase.test_17_delete_endpoint"}]}

View File

@ -1 +0,0 @@
{"name": "test_delete_tenant_user", "status": "broken", "statusDetails": {"message": "selenium.common.exceptions.TimeoutException: Message: Element: xpath->//div[@class='table-toolbar']/div/div//form/div/div/input not found in 5 seconds.", "trace": "self = <test_14_delete_tenant_user.TestDeleteUser object at 0x048F8490>\n\n @pytest.mark.flaky(reruns=3)\n def test_delete_tenant_user(self):\n \n login = Login(self.dr)\n datas = datainfo.get_xls_to_dict(\"user.xlsx\", \"Sheet1\")[0]\n data1s = datainfo.get_xls_to_dict(\"user.xlsx\", \"authuser\")[0]\n aupg = authUserPage.AuthUsertPage(self.dr)\n ta = userAction.UserAction(self.dr)\n # t_data = datainfo.get_xls_to_dict(\"tenantdata.xlsx\",\"Sheet1\")[0]\n login.login(datas[\"username\"], datas[\"password\"])\n # ta.create_tenant_user(data1s[\"tenantname\"],data1s[\"username\"],data1s[\"firstname\"],data1s[\"password\"],data1s[\"repassword\"],data1s[\"email\"])\n> ta.delete_tenant_user(data1s[\"username\"])\n\ntestcase\\test_14_delete_tenant_user.py:30: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\npublic\\appModel\\userAction.py:112: in delete_tenant_user\n self.a_u_pg.input_select_user(username)\npublic\\pages\\authUserPage.py:57: in input_select_user\n self.dr.type_and_enter(\"xpath->//div[@class='table-toolbar']/div/div//form/div/div/input\", value)\npublic\\common\\pyselenium.py:588: in type_and_enter\n self.element_wait(css)\npublic\\common\\pyselenium.py:91: in element_wait\n WebDriverWait(self.driver, secs, 1).until(EC.presence_of_element_located((By.XPATH, value)), messages)\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n\nself = <selenium.webdriver.support.wait.WebDriverWait (session=\"cc29f3d4-3257-4057-9845-0feb6ac6c452\")>\nmethod = <selenium.webdriver.support.expected_conditions.presence_of_element_located object at 0x0079B990>\nmessage = \"Element: xpath->//div[@class='table-toolbar']/div/div//form/div/div/input not found in 5 seconds.\"\n\n def until(self, method, message=''):\n \"\"\"Calls the method provided with the driver as an argument until the \\\n return value is not False.\"\"\"\n screen = None\n stacktrace = None\n \n end_time = time.time() + self._timeout\n while True:\n try:\n value = method(self._driver)\n if value:\n return value\n except self._ignored_exceptions as exc:\n screen = getattr(exc, 'screen', None)\n stacktrace = getattr(exc, 'stacktrace', None)\n time.sleep(self._poll)\n if time.time() > end_time:\n break\n> raise TimeoutException(message, screen, stacktrace)\nE selenium.common.exceptions.TimeoutException: Message: Element: xpath->//div[@class='table-toolbar']/div/div//form/div/div/input not found in 5 seconds.\n\nD:\\Env\\ui_auto\\lib\\site-packages\\selenium\\webdriver\\support\\wait.py:80: TimeoutException"}, "attachments": [{"name": "log", "source": "3b9153b9-8114-4331-a1fa-42f64c4d2872-attachment.txt", "type": "text/plain"}], "start": 1572677479992, "stop": 1572677493745, "uuid": "04eaeb00-0bc5-4ba6-b7bd-53a9b4367646", "historyId": "b9e3bb7f20f4cd13fb429a642dff2600", "testCaseId": "74364ad2aaa487ed4a1e7c4382278180", "fullName": "testcase.test_14_delete_tenant_user.TestDeleteUser#test_delete_tenant_user", "labels": [{"name": "parentSuite", "value": "testcase"}, {"name": "suite", "value": "test_14_delete_tenant_user"}, {"name": "subSuite", "value": "TestDeleteUser"}, {"name": "host", "value": "wuzs"}, {"name": "thread", "value": "7064-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "testcase.test_14_delete_tenant_user"}]}

View File

@ -1 +0,0 @@
{"name": "test_create_project", "status": "passed", "attachments": [{"name": "log", "source": "be6ebfc5-b255-48dc-b472-f07a0bc7c9d1-attachment.txt", "type": "text/plain"}], "start": 1572682559423, "stop": 1572682569602, "uuid": "b36a0bab-c8fd-4527-b6d8-f6e244732c72", "historyId": "36008615de03d35fb38c69ee59470008", "testCaseId": "528084f2169e968e51b2d554c06570a3", "fullName": "testcase.test_05_create_project.TestProject#test_create_project", "labels": [{"name": "parentSuite", "value": "testcase"}, {"name": "suite", "value": "test_05_create_project"}, {"name": "subSuite", "value": "TestProject"}, {"name": "host", "value": "wuzs"}, {"name": "thread", "value": "1364-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "testcase.test_05_create_project"}]}

View File

@ -1,198 +0,0 @@
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "POST /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 0.00797891616821289 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "POST /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.0029938220977783203 seconds
INFO root:log.py:32 添加endpint
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element {"using": "xpath", "value": "//a[contains(.,'\u6cb3\u5357')]/parent::li//child::i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "POST /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element {"using": "xpath", "value": "//a[contains(.,'\u6cb3\u5357')]/parent::li//child::i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "POST /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element/c3daf3fe-94da-4a6b-83e2-49aa4eb1ecaf/click {"id": "c3daf3fe-94da-4a6b-83e2-49aa4eb1ecaf"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "POST /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element/c3daf3fe-94da-4a6b-83e2-49aa4eb1ecaf/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.22534990310668945 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element {"using": "xpath", "value": "//a[contains(text(),'\u6cb3\u5357\u8d44\u6e90\u6c60')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "POST /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element {"using": "xpath", "value": "//a[contains(text(),'\u6cb3\u5357\u8d44\u6e90\u6c60')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "POST /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element/0a8a60f9-427f-4129-b9c0-540995d28895/click {"id": "0a8a60f9-427f-4129-b9c0-540995d28895"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "POST /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b/element/0a8a60f9-427f-4129-b9c0-540995d28895/click HTTP/1.1" 400 669
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Unable to click element: <xpath->//a[contains(text(),'河南资源池')]>, Spend 0.053656816482543945 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:12884/session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12884 "DELETE /session/4f36aeb6-ceeb-484e-b8a3-12b3cf01af5b HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 1.4899706840515137 seconds
INFO root:log.py:32 ############################### End ###############################
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:12935
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session HTTP/1.1" 200 736
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 9.265230178833008 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.27330613136291504 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.003991842269897461 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 0.5794486999511719 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/4a08ba0d-5e0d-4f0b-87ad-e8d25b757abd/clear {"id": "4a08ba0d-5e0d-4f0b-87ad-e8d25b757abd"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/4a08ba0d-5e0d-4f0b-87ad-e8d25b757abd/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/4a08ba0d-5e0d-4f0b-87ad-e8d25b757abd/value {"text": "wuzs_test_ui_auto", "value": ["w", "u", "z", "s", "_", "t", "e", "s", "t", "_", "u", "i", "_", "a", "u", "t", "o"], "id": "4a08ba0d-5e0d-4f0b-87ad-e8d25b757abd"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/4a08ba0d-5e0d-4f0b-87ad-e8d25b757abd/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_test_ui_auto, Spend 0.13463830947875977 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/5b17a0e9-5344-40c4-82f6-b81200d94fbc/clear {"id": "5b17a0e9-5344-40c4-82f6-b81200d94fbc"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/5b17a0e9-5344-40c4-82f6-b81200d94fbc/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/5b17a0e9-5344-40c4-82f6-b81200d94fbc/value {"text": "1qaz!QAZ", "value": ["1", "q", "a", "z", "!", "Q", "A", "Z"], "id": "5b17a0e9-5344-40c4-82f6-b81200d94fbc"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/5b17a0e9-5344-40c4-82f6-b81200d94fbc/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.0498654842376709 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/f8fa0349-30e9-4567-9c32-f9f69ddcf5eb/clear {"id": "f8fa0349-30e9-4567-9c32-f9f69ddcf5eb"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/f8fa0349-30e9-4567-9c32-f9f69ddcf5eb/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/f8fa0349-30e9-4567-9c32-f9f69ddcf5eb/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "f8fa0349-30e9-4567-9c32-f9f69ddcf5eb"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/f8fa0349-30e9-4567-9c32-f9f69ddcf5eb/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05884051322937012 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/f7397d7e-31e6-497d-aa45-e307b4c29c05/click {"id": "f7397d7e-31e6-497d-aa45-e307b4c29c05"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/f7397d7e-31e6-497d-aa45-e307b4c29c05/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.617347240447998 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_regionMgr, Spend 1.5149502754211426 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.003023386001586914 seconds
INFO root:log.py:32 添加endpint
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//a[contains(.,'\u6cb3\u5357')]/parent::li//child::i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//a[contains(.,'\u6cb3\u5357')]/parent::li//child::i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/8e8f4920-ffc8-4f13-8336-85a946736e0e/click {"id": "8e8f4920-ffc8-4f13-8336-85a946736e0e"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/8e8f4920-ffc8-4f13-8336-85a946736e0e/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//a[contains(.,'河南')]/parent::li//child::i>, Spend 0.28324317932128906 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//a[contains(text(),'\u6cb3\u5357\u8d44\u6e90\u6c60')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//a[contains(text(),'\u6cb3\u5357\u8d44\u6e90\u6c60')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/7c07683d-f78d-4cc5-93e5-488b44286a0b/click {"id": "7c07683d-f78d-4cc5-93e5-488b44286a0b"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/7c07683d-f78d-4cc5-93e5-488b44286a0b/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//a[contains(text(),'河南资源池')]>, Spend 0.31120920181274414 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//a[contains(text(),'\u6cb3\u5357\u8d44\u6e90\u6c60')]/parent::li//child::i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//a[contains(text(),'\u6cb3\u5357\u8d44\u6e90\u6c60')]/parent::li//child::i"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/ca40da19-a6ef-4cf2-8126-41a1c5a53abf/click {"id": "ca40da19-a6ef-4cf2-8126-41a1c5a53abf"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/ca40da19-a6ef-4cf2-8126-41a1c5a53abf/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//a[contains(text(),'河南资源池')]/parent::li//child::i>, Spend 0.2622568607330322 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "(//a[contains(text(),'vmware_api')])"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "(//a[contains(text(),'vmware_api')])"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/9cade509-1fe0-4505-b169-09946fb46ac8/click {"id": "9cade509-1fe0-4505-b169-09946fb46ac8"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/9cade509-1fe0-4505-b169-09946fb46ac8/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->(//a[contains(text(),'vmware_api')])>, Spend 0.33989977836608887 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//i[contains(.,'\u6dfb\u52a0')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//i[contains(.,'\u6dfb\u52a0')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/583cfe6d-ebae-4dea-8b04-83f03e42ec1d/click {"id": "583cfe6d-ebae-4dea-8b04-83f03e42ec1d"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/583cfe6d-ebae-4dea-8b04-83f03e42ec1d/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//i[contains(.,'添加')]>, Spend 0.29404592514038086 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "(//input[@type='text'])[13]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "(//input[@type='text'])[13]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/0120e002-df5c-45a2-bd56-308cf1d648ed/clear {"id": "0120e002-df5c-45a2-bd56-308cf1d648ed"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/0120e002-df5c-45a2-bd56-308cf1d648ed/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/0120e002-df5c-45a2-bd56-308cf1d648ed/value {"text": "https://192.168.54.136", "value": ["h", "t", "t", "p", "s", ":", "/", "/", "1", "9", "2", ".", "1", "6", "8", ".", "5", "4", ".", "1", "3", "6"], "id": "0120e002-df5c-45a2-bd56-308cf1d648ed"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/0120e002-df5c-45a2-bd56-308cf1d648ed/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath->(//input[@type='text'])[13]> content: https://192.168.54.136, Spend 0.16536378860473633 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//td[4]/button"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//td[4]/button"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/d955f588-95fd-4e0d-81de-072097de80f2/click {"id": "d955f588-95fd-4e0d-81de-072097de80f2"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/d955f588-95fd-4e0d-81de-072097de80f2/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//td[4]/button>, Spend 0.2483377456665039 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//table[@id='accessPoint']/tbody/tr[2]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element {"using": "xpath", "value": "//table[@id='accessPoint']/tbody/tr[2]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "POST /session/62620c6b-650e-4b4d-9891-32f81a02b416/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 GET http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416/element/a7e54096-a0b0-45a5-b45d-9d29f1a6678f/text {"id": "a7e54096-a0b0-45a5-b45d-9d29f1a6678f"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "GET /session/62620c6b-650e-4b4d-9891-32f81a02b416/element/a7e54096-a0b0-45a5-b45d-9d29f1a6678f/text HTTP/1.1" 200 78
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Get element text element: <xpath->//table[@id='accessPoint']/tbody/tr[2]>, Spend 0.06184124946594238 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:12935/session/62620c6b-650e-4b4d-9891-32f81a02b416 {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:12935 "DELETE /session/62620c6b-650e-4b4d-9891-32f81a02b416 HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 2.2499537467956543 seconds
INFO root:log.py:32 ############################### End ###############################

View File

@ -1,142 +0,0 @@
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:9914
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session HTTP/1.1" 200 736
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 10.295689821243286 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.29421496391296387 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.0030210018157958984 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 1.0192360877990723 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/078758ac-2af8-4de1-98d9-68ebbc1a8400/clear {"id": "078758ac-2af8-4de1-98d9-68ebbc1a8400"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/078758ac-2af8-4de1-98d9-68ebbc1a8400/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/078758ac-2af8-4de1-98d9-68ebbc1a8400/value {"text": "\u7cfb\u7edf\u7ba1\u7406\u5458", "value": ["\u7cfb", "\u7edf", "\u7ba1", "\u7406", "\u5458"], "id": "078758ac-2af8-4de1-98d9-68ebbc1a8400"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/078758ac-2af8-4de1-98d9-68ebbc1a8400/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: 系统管理员, Spend 0.06950855255126953 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/4dd9f5ef-9e94-49c6-b280-c7ef58d11b94/clear {"id": "4dd9f5ef-9e94-49c6-b280-c7ef58d11b94"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/4dd9f5ef-9e94-49c6-b280-c7ef58d11b94/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/4dd9f5ef-9e94-49c6-b280-c7ef58d11b94/value {"text": "123456", "value": ["1", "2", "3", "4", "5", "6"], "id": "4dd9f5ef-9e94-49c6-b280-c7ef58d11b94"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/4dd9f5ef-9e94-49c6-b280-c7ef58d11b94/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 123456, Spend 0.048868417739868164 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/dd55942a-65e8-4b2a-bb15-bdeac0d231c3/clear {"id": "dd55942a-65e8-4b2a-bb15-bdeac0d231c3"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/dd55942a-65e8-4b2a-bb15-bdeac0d231c3/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/dd55942a-65e8-4b2a-bb15-bdeac0d231c3/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "dd55942a-65e8-4b2a-bb15-bdeac0d231c3"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/dd55942a-65e8-4b2a-bb15-bdeac0d231c3/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.05185532569885254 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/fef54b5d-1bbd-45f1-b098-e6bfad261fff/click {"id": "fef54b5d-1bbd-45f1-b098-e6bfad261fff"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/fef54b5d-1bbd-45f1-b098-e6bfad261fff/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.23437714576721191 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_uorgMgr"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/systemManage/sys_uorgMgr, Spend 2.5722429752349854 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//div[@class='table-toolbar']/div/div//form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//div[@class='table-toolbar']/div/div//form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/clear {"id": "51184777-5e40-4058-8fa2-bafc62184935"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/value {"text": "wuzs_test_ui_auto", "value": ["w", "u", "z", "s", "_", "t", "e", "s", "t", "_", "u", "i", "_", "a", "u", "t", "o"], "id": "51184777-5e40-4058-8fa2-bafc62184935"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/value {"text": "\ue007", "value": ["\ue007"], "id": "51184777-5e40-4058-8fa2-bafc62184935"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_test_ui_auto,and sleep 0.5 seconds,input ENTER key, Spend 0.9085674285888672 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//span[contains(.,'\u66f4\u591a')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//span[contains(.,'\u66f4\u591a')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/42a06914-b085-4ff1-ae25-595fa7f2fc2d/click {"id": "42a06914-b085-4ff1-ae25-595fa7f2fc2d"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/42a06914-b085-4ff1-ae25-595fa7f2fc2d/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//span[contains(.,'更多')]>, Spend 0.24827861785888672 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//button[contains(.,'\u5220\u9664')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//button[contains(.,'\u5220\u9664')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/40b16591-efb3-4a81-a2b6-d7711469c5b3/click {"id": "40b16591-efb3-4a81-a2b6-d7711469c5b3"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/40b16591-efb3-4a81-a2b6-d7711469c5b3/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//button[contains(.,'删除')]>, Spend 0.24015235900878906 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//a[contains(.,'\u786e\u5b9a')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//a[contains(.,'\u786e\u5b9a')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/bd9dfe72-65c5-4f97-969c-fcd20576d6fd/click {"id": "bd9dfe72-65c5-4f97-969c-fcd20576d6fd"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/bd9dfe72-65c5-4f97-969c-fcd20576d6fd/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//a[contains(.,'确定')]>, Spend 0.24633336067199707 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//div[@class='table-toolbar']/div/div//form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//div[@class='table-toolbar']/div/div//form/div/div/input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/clear {"id": "51184777-5e40-4058-8fa2-bafc62184935"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/value {"text": "wuzs_test_ui_auto", "value": ["w", "u", "z", "s", "_", "t", "e", "s", "t", "_", "u", "i", "_", "a", "u", "t", "o"], "id": "51184777-5e40-4058-8fa2-bafc62184935"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/value {"text": "\ue007", "value": ["\ue007"], "id": "51184777-5e40-4058-8fa2-bafc62184935"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element/51184777-5e40-4058-8fa2-bafc62184935/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Element <xpath->//div[@class='table-toolbar']/div/div//form/div/div/input> type content: wuzs_test_ui_auto,and sleep 0.5 seconds,input ENTER key, Spend 0.6785678863525391 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85/element {"using": "xpath", "value": "//span[contains(.,'wuzs_test_ui_auto')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "POST /session/923cd097-4512-4694-8082-5bcd05a0be85/element HTTP/1.1" 404 317
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 FAIL Element: <xpath->//span[contains(.,'wuzs_test_ui_auto')]> is not exist, Spend 11.013489484786987 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:9914/session/923cd097-4512-4694-8082-5bcd05a0be85 {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:9914 "DELETE /session/923cd097-4512-4694-8082-5bcd05a0be85 HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 1.5671308040618896 seconds
INFO root:log.py:32 ############################### End ###############################

View File

@ -1 +0,0 @@
用户名:wuzs_test_ui_auto

View File

@ -1 +0,0 @@
{"uuid": "8e3bae7e-b1b2-4e3a-b9e1-9a0618d1d0cd", "children": ["d3e7766c-a824-4969-bd05-89b5da4b0eef"], "befores": [{"name": "_Class__pytest_setup_class", "status": "passed", "start": 1572686407602, "stop": 1572686417187}], "afters": [{"name": "_Class__pytest_setup_class::0", "status": "passed", "start": 1572686426167, "stop": 1572686429654}], "start": 1572686407602, "stop": 1572686429654}

View File

@ -1 +0,0 @@
{"name": "test_create_service_vmware", "status": "passed", "attachments": [{"name": "log", "source": "11e58b98-e70b-45d6-8ea7-6cb104dad4c6-attachment.txt", "type": "text/plain"}], "start": 1572695709660, "stop": 1572695716721, "uuid": "78e42759-4566-4c63-9168-172437f28cb6", "historyId": "09d954447c6f857e5c7812d138ac4883", "testCaseId": "c17129fd63625087a453dc7e6b552e08", "fullName": "testcase.test_07_create_service.TestCreateService#test_create_service_vmware", "labels": [{"name": "parentSuite", "value": "testcase"}, {"name": "suite", "value": "test_07_create_service"}, {"name": "subSuite", "value": "TestCreateService"}, {"name": "host", "value": "wuzs"}, {"name": "thread", "value": "3736-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "testcase.test_07_create_service"}]}

View File

@ -1 +0,0 @@
{"name": "test_create", "status": "passed", "steps": [{"name": "登录系统", "status": "passed", "attachments": [{"source": "cbef7ca1-8223-4ad3-a6af-dbc5ad144680-attachment.attach"}, {"source": "5619392a-4393-4ead-b63b-2fa14854b48c-attachment.attach"}, {"source": "ab2aedcc-09db-429c-865c-96fc86a3f6a8-attachment.attach"}], "start": 1572761386113, "stop": 1572761386116}, {"name": "创建运营部门", "status": "passed", "attachments": [{"source": "225cb5d5-df43-440a-a4a0-e933ffda22a8-attachment.attach"}, {"source": "c105a5d6-90a5-4a77-b131-582f20c6527f-attachment.attach"}, {"source": "051ef411-de4a-4c5d-a7d2-909af171fdc8-attachment.attach"}], "start": 1572761389797, "stop": 1572761389802}], "attachments": [{"name": "log", "source": "88305ea5-5507-48ae-b356-76a984c618de-attachment.txt", "type": "text/plain"}], "start": 1572761386106, "stop": 1572761398131, "uuid": "9f7a3ce9-f51a-42a3-9321-8f23f0a91f8f", "historyId": "44c6656fe799e7f2ad411208bf6ac383", "testCaseId": "0c51a99e1150ad1d4da546de773002cf", "fullName": "testcase.test_03_create_tenant.TestTeant#test_create", "labels": [{"name": "feature", "value": "运营部门管理"}, {"name": "story", "value": "创建运营部门"}, {"name": "parentSuite", "value": "testcase"}, {"name": "suite", "value": "test_03_create_tenant"}, {"name": "subSuite", "value": "TestTeant"}, {"name": "host", "value": "wuzs"}, {"name": "thread", "value": "23024-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "testcase.test_03_create_tenant"}]}

View File

@ -1 +0,0 @@
{"name": "test_login", "status": "passed", "attachments": [{"name": "log", "source": "084a4c1c-23e9-41bd-86e0-f12540507b19-attachment.txt", "type": "text/plain"}], "start": 1572770159389, "stop": 1572770161525, "uuid": "ca9c4699-d2e7-41a7-a096-5d26c8644d17", "historyId": "9255c6165bf5e0094fd7c2f0bb8fca8f", "testCaseId": "86b879023af9c52b7e4c46542598da7a", "fullName": "testcase.test_00_login.TestLoin#test_login", "labels": [{"name": "feature", "value": "登录模块"}, {"name": "story", "value": "系统管理员登录系统"}, {"name": "parentSuite", "value": "testcase"}, {"name": "suite", "value": "test_00_login"}, {"name": "subSuite", "value": "TestLoin"}, {"name": "host", "value": "wuzs"}, {"name": "thread", "value": "9220-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "testcase.test_00_login"}]}

View File

@ -1,205 +0,0 @@
INFO root:log.py:32 ############################### START ###############################
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session {"capabilities": {"firstMatch": [{}], "alwaysMatch": {"browserName": "firefox", "acceptInsecureCerts": true}}, "desiredCapabilities": {"browserName": "firefox", "acceptInsecureCerts": true, "marionette": true}}
DEBUG urllib3.connectionpool:connectionpool.py:225 Starting new HTTP connection (1): 127.0.0.1:7233
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session HTTP/1.1" 200 736
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Start a new browser: firefox, Spend 9.252193927764893 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/window/maximize {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/window/maximize HTTP/1.1" 200 52
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set browser window maximized, Spend 0.2692880630493164 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/timeouts {"implicit": 10000}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/timeouts HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Set wait all element display in 10 seconds, Spend 0.002991199493408203 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/url {"url": "http:\\\\192.168.54.13"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13, Spend 0.6582636833190918 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//input[@name='username']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/4d327ae7-6351-485e-a82f-538304ab446a/clear {"id": "4d327ae7-6351-485e-a82f-538304ab446a"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/4d327ae7-6351-485e-a82f-538304ab446a/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/4d327ae7-6351-485e-a82f-538304ab446a/value {"text": "wuzs_test_ui_auto", "value": ["w", "u", "z", "s", "_", "t", "e", "s", "t", "_", "u", "i", "_", "a", "u", "t", "o"], "id": "4d327ae7-6351-485e-a82f-538304ab446a"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/4d327ae7-6351-485e-a82f-538304ab446a/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='username']> content: wuzs_test_ui_auto, Spend 0.15858101844787598 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//input[@name='password']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/f0f70a2a-ebc9-42c6-b10b-9d753f02dedb/clear {"id": "f0f70a2a-ebc9-42c6-b10b-9d753f02dedb"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/f0f70a2a-ebc9-42c6-b10b-9d753f02dedb/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/f0f70a2a-ebc9-42c6-b10b-9d753f02dedb/value {"text": "1qaz!QAZ", "value": ["1", "q", "a", "z", "!", "Q", "A", "Z"], "id": "f0f70a2a-ebc9-42c6-b10b-9d753f02dedb"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/f0f70a2a-ebc9-42c6-b10b-9d753f02dedb/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='password']> content: 1qaz!QAZ, Spend 0.055850982666015625 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//input[@name='captcha']"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/06748662-da49-41f0-a2b7-7ce98a8187d9/clear {"id": "06748662-da49-41f0-a2b7-7ce98a8187d9"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/06748662-da49-41f0-a2b7-7ce98a8187d9/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/06748662-da49-41f0-a2b7-7ce98a8187d9/value {"text": "1234", "value": ["1", "2", "3", "4"], "id": "06748662-da49-41f0-a2b7-7ce98a8187d9"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/06748662-da49-41f0-a2b7-7ce98a8187d9/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clear and type element: <xpath -> //input[@name='captcha']> content: 1234, Spend 0.08060479164123535 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//button[contains(.,'\u767b\u5f55')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/dab9a385-39f3-4093-adf8-30f70db693a5/click {"id": "dab9a385-39f3-4093-adf8-30f70db693a5"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/dab9a385-39f3-4093-adf8-30f70db693a5/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath -> //button[contains(.,'登录')]>, Spend 0.7370531558990479 seconds
INFO root:log.py:32 同步物理资源
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 1.9448626041412354 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/url {"url": "http:\\\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/url HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Navigated to http:\\192.168.54.13/csdp/manage/#/manage-view/resource/sys_ResourceSynchroniz/osphysicalsync, Spend 0.03191423416137695 seconds
INFO root:log.py:32 选择region河南;
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//div/div/div/div/div/div/span/span[2]/span"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//div/div/div/div/div/div/span/span[2]/span"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/82b1f297-153e-430b-83d0-0eff3e1ced0c/click {"id": "82b1f297-153e-430b-83d0-0eff3e1ced0c"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/82b1f297-153e-430b-83d0-0eff3e1ced0c/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//div/div/div/div/div/div/span/span[2]/span>, Spend 0.3001563549041748 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "(//input[@type='search'])[3]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "(//input[@type='search'])[3]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/89ef9934-7dfd-4f3e-ac29-85b31a57e64d/clear {"id": "89ef9934-7dfd-4f3e-ac29-85b31a57e64d"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/89ef9934-7dfd-4f3e-ac29-85b31a57e64d/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/89ef9934-7dfd-4f3e-ac29-85b31a57e64d/value {"text": "\u6cb3\u5357", "value": ["\u6cb3", "\u5357"], "id": "89ef9934-7dfd-4f3e-ac29-85b31a57e64d"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/89ef9934-7dfd-4f3e-ac29-85b31a57e64d/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/89ef9934-7dfd-4f3e-ac29-85b31a57e64d/value {"text": "\ue007", "value": ["\ue007"], "id": "89ef9934-7dfd-4f3e-ac29-85b31a57e64d"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/89ef9934-7dfd-4f3e-ac29-85b31a57e64d/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Element <xpath->(//input[@type='search'])[3]> type content: 河南,and sleep 0.5 seconds,input ENTER key, Spend 0.5944797992706299 seconds
INFO root:log.py:32 选择数据中心:河南资源池
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//div[2]/div/div/span/span[2]/span"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//div[2]/div/div/span/span[2]/span"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/b5cfccc4-8619-4c1f-8655-1938d8da595e/click {"id": "b5cfccc4-8619-4c1f-8655-1938d8da595e"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/b5cfccc4-8619-4c1f-8655-1938d8da595e/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//div[2]/div/div/span/span[2]/span>, Spend 0.3280916213989258 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "(//input[@type='search'])[4]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "(//input[@type='search'])[4]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/5f468f77-34c2-4f5e-959a-0e17dd9c84b1/clear {"id": "5f468f77-34c2-4f5e-959a-0e17dd9c84b1"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/5f468f77-34c2-4f5e-959a-0e17dd9c84b1/clear HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/5f468f77-34c2-4f5e-959a-0e17dd9c84b1/value {"text": "\u6cb3\u5357\u8d44\u6e90\u6c60", "value": ["\u6cb3", "\u5357", "\u8d44", "\u6e90", "\u6c60"], "id": "5f468f77-34c2-4f5e-959a-0e17dd9c84b1"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/5f468f77-34c2-4f5e-959a-0e17dd9c84b1/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/5f468f77-34c2-4f5e-959a-0e17dd9c84b1/value {"text": "\ue007", "value": ["\ue007"], "id": "5f468f77-34c2-4f5e-959a-0e17dd9c84b1"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/5f468f77-34c2-4f5e-959a-0e17dd9c84b1/value HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Element <xpath->(//input[@type='search'])[4]> type content: 河南资源池,and sleep 0.5 seconds,input ENTER key, Spend 0.5944299697875977 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/5780d1c4-204d-4bc0-a523-e3057e55cccf/click {"id": "5780d1c4-204d-4bc0-a523-e3057e55cccf"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/5780d1c4-204d-4bc0-a523-e3057e55cccf/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//span[text()='DC1']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.41090989112854004 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/fb36fca8-bacb-49e8-8b67-b0d8e7e2ec51/click {"id": "fb36fca8-bacb-49e8-8b67-b0d8e7e2ec51"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/fb36fca8-bacb-49e8-8b67-b0d8e7e2ec51/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//span[text()='DC2']/parent::div/parent::td/parent::tr/child::td/child::div/child::span/child::input>, Spend 0.24634957313537598 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//button[contains(.,'\u00a0\u540c\u6b65')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//button[contains(.,'\u00a0\u540c\u6b65')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/8488840b-173d-4bc7-86f9-0c6c49a69e3b/click {"id": "8488840b-173d-4bc7-86f9-0c6c49a69e3b"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/8488840b-173d-4bc7-86f9-0c6c49a69e3b/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//button[contains(.,' 同步')]>, Spend 0.2533688545227051 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//button[contains(.,'\u786e\u5b9a')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//button[contains(.,'\u786e\u5b9a')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/99402e96-6dcb-4449-84ae-aaf78c09067e/click {"id": "99402e96-6dcb-4449-84ae-aaf78c09067e"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/99402e96-6dcb-4449-84ae-aaf78c09067e/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//button[contains(.,'确定')]>, Spend 0.271317720413208 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//button[contains(.,'\u00a0\u5237\u65b0')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//button[contains(.,'\u00a0\u5237\u65b0')]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/851b636f-8c99-419a-ae8c-84f9405c8804/click {"id": "851b636f-8c99-419a-ae8c-84f9405c8804"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/851b636f-8c99-419a-ae8c-84f9405c8804/click HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Clicked element: <xpath->//button[contains(.,' 刷新')]>, Spend 0.27327632904052734 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//td[contains(.,'DC1')]/../td[3]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//td[contains(.,'DC1')]/../td[3]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 GET http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/1c221ed2-bfa5-4642-9700-9279114d46b9/text {"id": "1c221ed2-bfa5-4642-9700-9279114d46b9"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "GET /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/1c221ed2-bfa5-4642-9700-9279114d46b9/text HTTP/1.1" 200 26
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Get element text element: <xpath->//td[contains(.,'DC1')]/../td[3]>, Spend 0.04192757606506348 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//td[contains(.,'DC2')]/../td[3]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 POST http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element {"using": "xpath", "value": "//td[contains(.,'DC2')]/../td[3]"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "POST /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element HTTP/1.1" 200 88
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 GET http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/3824c5fa-3695-4fca-9eea-c3f389ff754b/text {"id": "3824c5fa-3695-4fca-9eea-c3f389ff754b"}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "GET /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87/element/3824c5fa-3695-4fca-9eea-c3f389ff754b/text HTTP/1.1" 200 26
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Get element text element: <xpath->//td[contains(.,'DC2')]/../td[3]>, Spend 0.034908294677734375 seconds
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:388 DELETE http://127.0.0.1:7233/session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87 {}
DEBUG urllib3.connectionpool:connectionpool.py:437 http://127.0.0.1:7233 "DELETE /session/7b14d253-a08a-4a0e-b47d-68a9bcbe8c87 HTTP/1.1" 200 14
DEBUG selenium.webdriver.remote.remote_connection:remote_connection.py:440 Finished Request
INFO root:log.py:32 SUCCESS Closed all window and quit the driver, Spend 1.2756292819976807 seconds
INFO root:log.py:32 ############################### End ###############################

View File

@ -1 +0,0 @@
{"uuid": "fd2d3d78-f619-4442-aa18-deb3f9e8840d", "children": ["f700ed5a-13f2-4fc3-b3de-93ed2330bffc"], "befores": [{"name": "_Class__pytest_setup_class", "status": "passed", "start": 1572678018178, "stop": 1572678027724}], "afters": [{"name": "_Class__pytest_setup_class::0", "status": "passed", "start": 1572678041488, "stop": 1572678042550}], "start": 1572678018178, "stop": 1572678042550}

View File

@ -1 +0,0 @@
服务名称:openstack_l_api

Some files were not shown because too many files have changed in this diff Show More