summaryrefslogtreecommitdiff
path: root/vendor/github.com/playwright-community/playwright-go/errors.go
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-12 16:33:27 -0600
committermo khan <mo@mokhan.ca>2025-05-12 16:33:27 -0600
commit29b59441a4bbada64d8d07bd2609f15dfde670e5 (patch)
tree3b3583edb261279cfcdfd9eed904d118c4bf67b1 /vendor/github.com/playwright-community/playwright-go/errors.go
parent78ccd9a4312eab7e11da4413733a12953f88a4fe (diff)
test: remove UI tests
Diffstat (limited to 'vendor/github.com/playwright-community/playwright-go/errors.go')
-rw-r--r--vendor/github.com/playwright-community/playwright-go/errors.go58
1 files changed, 0 insertions, 58 deletions
diff --git a/vendor/github.com/playwright-community/playwright-go/errors.go b/vendor/github.com/playwright-community/playwright-go/errors.go
deleted file mode 100644
index 36f7396..0000000
--- a/vendor/github.com/playwright-community/playwright-go/errors.go
+++ /dev/null
@@ -1,58 +0,0 @@
-package playwright
-
-import (
- "errors"
- "fmt"
-)
-
-var (
- // ErrPlaywright wraps all Playwright errors.
- // - Use errors.Is to check if the error is a Playwright error.
- // - Use errors.As to cast an error to [Error] if you want to access "Stack".
- ErrPlaywright = errors.New("playwright")
- // ErrTargetClosed usually wraps a reason.
- ErrTargetClosed = errors.New("target closed")
- // ErrTimeout wraps timeout errors. It can be either Playwright TimeoutError or client timeout.
- ErrTimeout = errors.New("timeout")
-)
-
-// Error represents a Playwright error
-type Error struct {
- Name string `json:"name"`
- Message string `json:"message"`
- Stack string `json:"stack"`
-}
-
-func (e *Error) Error() string {
- return e.Message
-}
-
-func (e *Error) Is(target error) bool {
- err, ok := target.(*Error)
- if !ok {
- return false
- }
- if err.Name != e.Name {
- return false
- }
- if e.Name != "Error" {
- return true // same name and not normal error
- }
- return e.Message == err.Message
-}
-
-func parseError(err Error) error {
- if err.Name == "TimeoutError" {
- return fmt.Errorf("%w: %w: %w", ErrPlaywright, ErrTimeout, &err)
- } else if err.Name == "TargetClosedError" {
- return fmt.Errorf("%w: %w: %w", ErrPlaywright, ErrTargetClosed, &err)
- }
- return fmt.Errorf("%w: %w", ErrPlaywright, &err)
-}
-
-func targetClosedError(reason *string) error {
- if reason == nil {
- return ErrTargetClosed
- }
- return fmt.Errorf("%w: %s", ErrTargetClosed, *reason)
-}