tests: add bili android example

This commit is contained in:
lilong.129
2024-01-19 15:53:07 +08:00
parent e7a8cec5db
commit e5aadb54e2
5 changed files with 188 additions and 1 deletions

View File

@@ -1 +1 @@
v4.3.6
v4.3.8-202401091556

View File

@@ -282,6 +282,10 @@ func (tc *TCase) toTestCase() (*TestCase, error) {
testCase.TestSteps = append(testCase.TestSteps, &StepMobile{
step: step,
})
} else if step.Shell != nil {
testCase.TestSteps = append(testCase.TestSteps, &StepShell{
step: step,
})
} else {
log.Warn().Interface("step", step).Msg("[convertTestCase] unexpected step")
}