mirror of
https://github.com/MontFerret/ferret.git
synced 2025-08-15 20:02:56 +02:00
Fixed use of invalid HTMLElementIdentity field
This commit is contained in:
@@ -1067,11 +1067,11 @@ func (el *HTMLElement) FocusBySelector(ctx context.Context, selector values.Stri
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (el *HTMLElement) Blur(ctx context.Context) error {
|
func (el *HTMLElement) Blur(ctx context.Context) error {
|
||||||
return el.input.Blur(ctx, el.id.objectID)
|
return el.input.Blur(ctx, el.id.ObjectID)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (el *HTMLElement) BlurBySelector(ctx context.Context, selector values.String) error {
|
func (el *HTMLElement) BlurBySelector(ctx context.Context, selector values.String) error {
|
||||||
return el.input.BlurBySelector(ctx, el.id.objectID, selector.String())
|
return el.input.BlurBySelector(ctx, el.id.ObjectID, selector.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
func (el *HTMLElement) Hover(ctx context.Context) error {
|
func (el *HTMLElement) Hover(ctx context.Context) error {
|
||||||
|
Reference in New Issue
Block a user