代码拉取完成,页面将自动刷新
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Project :jira
# @Author : hpc
# @File : utils.py
# @Time : 2021/6/14 3:35 下午
class Utils(object):
@staticmethod
def handle_colon(content, word):
"""处理冒号
:param content:
:param word:
:return:
"""
# 英文:
if content.find('{}:'.format(word)) != -1:
symbol = ':'
# 中文:
elif content.find('{}:'.format(word)) != -1:
symbol = ':'
else:
symbol = ''
data = content.split('{}{}'.format(word, symbol))[1]
return data
@classmethod
def key_word(cls, case_content):
"""处理关键词
:param case_content:
:return:
"""
# 用例库名称或者用例名称
case_title = case_content.split('-')[0]
key_word = story = ''
for filed in case_content.split('-')[1:]:
if filed.find('关键词') != -1:
key_word = cls.handle_colon(filed, '关键词')
if filed.find('需求') != -1:
story = cls.handle_colon(filed, '需求')
return case_title, key_word, story
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。