mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-13 07:29:45 +08:00
24 lines
485 B
Go
24 lines
485 B
Go
//go:build !opencv
|
|
|
|
package uixt
|
|
|
|
import (
|
|
"image"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func (dExt *DriverExt) extendCV(options ...CVOption) (err error) {
|
|
return nil
|
|
}
|
|
|
|
func (dExt *DriverExt) FindAllImageRect(search string) (rects []image.Rectangle, err error) {
|
|
log.Fatal().Msg("opencv is not supported")
|
|
return
|
|
}
|
|
|
|
func (dExt *DriverExt) FindImageRectInUIKit(imagePath string, options ...ActionOption) (point PointF, err error) {
|
|
log.Fatal().Msg("opencv is not supported")
|
|
return
|
|
}
|