2024-12-07 03:53:46 -05:00
|
|
|
package extractor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
2024-12-23 03:18:50 -05:00
|
|
|
type OpenPageOptions struct {
|
|
|
|
Referer string
|
|
|
|
}
|
|
|
|
|
2024-12-07 03:53:46 -05:00
|
|
|
type Browser interface {
|
|
|
|
io.Closer
|
|
|
|
|
2024-12-23 03:18:50 -05:00
|
|
|
Open(ctx context.Context, url string, opts OpenPageOptions) (Document, error)
|
2024-12-07 03:53:46 -05:00
|
|
|
}
|