mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
11bf8c365a
* Fixed headers * Added e2e for static pages
21 lines
303 B
Go
21 lines
303 B
Go
package drivers
|
|
|
|
type (
|
|
Viewport struct {
|
|
Height int
|
|
Width int
|
|
ScaleFactor float64
|
|
Mobile bool
|
|
Landscape bool
|
|
}
|
|
|
|
Params struct {
|
|
URL string
|
|
UserAgent string
|
|
KeepCookies bool
|
|
Cookies []HTTPCookie
|
|
Headers HTTPHeaders
|
|
Viewport *Viewport
|
|
}
|
|
)
|