mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-25 02:10:24 +08:00
73 lines
1.9 KiB
Go
73 lines
1.9 KiB
Go
package uixt
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/code"
|
|
)
|
|
|
|
// TODO: add more popup texts
|
|
var popups = [][]string{
|
|
{".*青少年.*", "我知道了"}, // 青少年弹窗
|
|
{".*个人信息保护.*", "同意"},
|
|
{".*通讯录.*", "拒绝"},
|
|
{".*更新.*", "以后再说|稍后|取消"},
|
|
{".*升级.*", "以后再说|稍后|取消"},
|
|
{".*定位.*", "仅.*允许"},
|
|
{".*拍照.*", "仅.*允许"},
|
|
{".*录音.*", "仅.*允许"},
|
|
{".*位置.*", "仅.*允许"},
|
|
{".*权限.*", "仅.*允许|始终允许"},
|
|
{".*允许.*", "仅.*允许|始终允许"},
|
|
{".*风险.*", "继续使用"},
|
|
{"管理使用时间", ".*忽略.*"},
|
|
}
|
|
|
|
func findTextPopup(screenTexts OCRTexts) (closePoint *OCRText) {
|
|
for _, popup := range popups {
|
|
if len(popup) != 2 {
|
|
continue
|
|
}
|
|
|
|
points, err := screenTexts.FindTexts([]string{popup[0], popup[1]}, WithRegex(true))
|
|
if err == nil {
|
|
log.Warn().Interface("popup", popup).
|
|
Interface("texts", screenTexts).Msg("text popup found")
|
|
closePoint = &points[1]
|
|
break
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func (dExt *DriverExt) handleTextPopup(screenTexts OCRTexts) error {
|
|
closePoint := findTextPopup(screenTexts)
|
|
if closePoint == nil {
|
|
// no popup found
|
|
return nil
|
|
}
|
|
|
|
log.Info().Str("text", closePoint.Text).Msg("close popup")
|
|
pointCenter := closePoint.Center()
|
|
if err := dExt.TapAbsXY(pointCenter.X, pointCenter.Y); err != nil {
|
|
log.Error().Err(err).Msg("tap popup failed")
|
|
return errors.Wrap(code.MobileUIPopupError, err.Error())
|
|
}
|
|
// tap popup success
|
|
return nil
|
|
}
|
|
|
|
func (dExt *DriverExt) AutoPopupHandler() error {
|
|
// TODO: check popup by activity type
|
|
|
|
// check popup by screenshot
|
|
screenResult, err := dExt.GetScreenResult(
|
|
WithScreenShotOCR(true), WithScreenShotUpload(true))
|
|
if err != nil {
|
|
return errors.Wrap(err, "get screen result failed for popup handler")
|
|
}
|
|
|
|
return dExt.handleTextPopup(screenResult.Texts)
|
|
}
|