mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-16 06:37:37 +08:00
11 lines
228 B
Go
11 lines
228 B
Go
//go:build !ocr
|
|
|
|
package uixt
|
|
|
|
import "github.com/rs/zerolog/log"
|
|
|
|
func (dExt *DriverExt) FindTextByOCR(ocrText string, index ...int) (x, y, width, height float64, err error) {
|
|
log.Fatal().Msg("OCR is not supported")
|
|
return
|
|
}
|