mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-09 22:44:05 +08:00
change: update variable name
This commit is contained in:
@@ -408,7 +408,7 @@ func (dExt *DriverExt) DoAction(action MobileAction) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
identifierOption := WithDataIdentifier(action.Identifier)
|
identifierOption := WithDataIdentifier(action.Identifier)
|
||||||
OffsetOption := WithDataOffset(action.Offset[0], action.Offset[1])
|
offsetOption := WithDataOffset(action.Offset[0], action.Offset[1])
|
||||||
indexOption := WithDataIndex(action.Index)
|
indexOption := WithDataIndex(action.Index)
|
||||||
scopeOption := WithDataScope(dExt.getAbsScope(action.Scope[0], action.Scope[1], action.Scope[2], action.Scope[3]))
|
scopeOption := WithDataScope(dExt.getAbsScope(action.Scope[0], action.Scope[1], action.Scope[2], action.Scope[3]))
|
||||||
|
|
||||||
@@ -430,7 +430,7 @@ func (dExt *DriverExt) DoAction(action MobileAction) error {
|
|||||||
}
|
}
|
||||||
foundTextAction := func(d *DriverExt) error {
|
foundTextAction := func(d *DriverExt) error {
|
||||||
// tap text
|
// tap text
|
||||||
return d.TapAbsXY(point.X, point.Y, identifierOption, OffsetOption)
|
return d.TapAbsXY(point.X, point.Y, identifierOption, offsetOption)
|
||||||
}
|
}
|
||||||
|
|
||||||
if action.Direction != nil {
|
if action.Direction != nil {
|
||||||
@@ -459,7 +459,7 @@ func (dExt *DriverExt) DoAction(action MobileAction) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
identifierOption := WithDataIdentifier(action.Identifier)
|
identifierOption := WithDataIdentifier(action.Identifier)
|
||||||
OffsetOption := WithDataOffset(action.Offset[0], action.Offset[1])
|
offsetOption := WithDataOffset(action.Offset[0], action.Offset[1])
|
||||||
scopeOption := WithDataScope(dExt.getAbsScope(action.Scope[0], action.Scope[1], action.Scope[2], action.Scope[3]))
|
scopeOption := WithDataScope(dExt.getAbsScope(action.Scope[0], action.Scope[1], action.Scope[2], action.Scope[3]))
|
||||||
// default to retry 10 times
|
// default to retry 10 times
|
||||||
if action.MaxRetryTimes == 0 {
|
if action.MaxRetryTimes == 0 {
|
||||||
@@ -484,7 +484,7 @@ func (dExt *DriverExt) DoAction(action MobileAction) error {
|
|||||||
}
|
}
|
||||||
foundTextAction := func(d *DriverExt) error {
|
foundTextAction := func(d *DriverExt) error {
|
||||||
// tap text
|
// tap text
|
||||||
return d.TapAbsXY(point.X, point.Y, identifierOption, OffsetOption)
|
return d.TapAbsXY(point.X, point.Y, identifierOption, offsetOption)
|
||||||
}
|
}
|
||||||
|
|
||||||
// default to retry 10 times
|
// default to retry 10 times
|
||||||
@@ -554,11 +554,11 @@ func (dExt *DriverExt) DoAction(action MobileAction) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
indexOption := WithDataIndex(action.Index)
|
indexOption := WithDataIndex(action.Index)
|
||||||
OffsetOption := WithDataOffset(action.Offset[0], action.Offset[1])
|
offsetOption := WithDataOffset(action.Offset[0], action.Offset[1])
|
||||||
scopeOption := WithDataScope(dExt.getAbsScope(action.Scope[0], action.Scope[1], action.Scope[2], action.Scope[3]))
|
scopeOption := WithDataScope(dExt.getAbsScope(action.Scope[0], action.Scope[1], action.Scope[2], action.Scope[3]))
|
||||||
identifierOption := WithDataIdentifier(action.Identifier)
|
identifierOption := WithDataIdentifier(action.Identifier)
|
||||||
IgnoreNotFoundErrorOption := WithDataIgnoreNotFoundError(action.IgnoreNotFoundError)
|
IgnoreNotFoundErrorOption := WithDataIgnoreNotFoundError(action.IgnoreNotFoundError)
|
||||||
return dExt.TapByOCR(ocrText, identifierOption, IgnoreNotFoundErrorOption, indexOption, scopeOption, OffsetOption)
|
return dExt.TapByOCR(ocrText, identifierOption, IgnoreNotFoundErrorOption, indexOption, scopeOption, offsetOption)
|
||||||
}
|
}
|
||||||
return fmt.Errorf("invalid %s params: %v", ACTION_TapByOCR, action.Params)
|
return fmt.Errorf("invalid %s params: %v", ACTION_TapByOCR, action.Params)
|
||||||
case ACTION_TapByCV:
|
case ACTION_TapByCV:
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ func (dExt *DriverExt) swipeToTapApp(appName string, action MobileAction) error
|
|||||||
|
|
||||||
identifierOption := WithDataIdentifier(action.Identifier)
|
identifierOption := WithDataIdentifier(action.Identifier)
|
||||||
indexOption := WithDataIndex(action.Index)
|
indexOption := WithDataIndex(action.Index)
|
||||||
OffsetOption := WithDataOffset(action.Offset[0], action.Offset[1])
|
offsetOption := WithDataOffset(action.Offset[0], action.Offset[1])
|
||||||
scopeOption := WithDataScope(dExt.getAbsScope(action.Scope[0], action.Scope[1], action.Scope[2], action.Scope[3]))
|
scopeOption := WithDataScope(dExt.getAbsScope(action.Scope[0], action.Scope[1], action.Scope[2], action.Scope[3]))
|
||||||
|
|
||||||
// default to retry 5 times
|
// default to retry 5 times
|
||||||
@@ -156,7 +156,7 @@ func (dExt *DriverExt) swipeToTapApp(appName string, action MobileAction) error
|
|||||||
}
|
}
|
||||||
foundAppAction := func(d *DriverExt) error {
|
foundAppAction := func(d *DriverExt) error {
|
||||||
// click app to launch
|
// click app to launch
|
||||||
return d.TapAbsXY(point.X, point.Y, identifierOption, OffsetOption)
|
return d.TapAbsXY(point.X, point.Y, identifierOption, offsetOption)
|
||||||
}
|
}
|
||||||
|
|
||||||
// go to home screen
|
// go to home screen
|
||||||
|
|||||||
Reference in New Issue
Block a user