Last active
December 30, 2021 07:49
-
-
Save c1xf/5f61ddb49dc26ea4df022d775e676541 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml client-log-scene | |
skinparam defaultFontName AR PL UKai CN | |
title 客户端异常场景 | |
start | |
:打开客户端; | |
if (出现异常?) then (yes) | |
:1、脚本运行异常 | |
2、接口请求异常(400/404... | |
3、界面显示有误; | |
end | |
else (no) | |
:填写表单; | |
if(出现异常?) then (yes) | |
:1、用户输入有误 | |
2、表单校验规则有误 | |
3、接口校验未通过; | |
end | |
else (no) | |
:正常使用; | |
stop | |
@enduml | |
' gist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment