Documentation ¶
Index ¶
- Constants
- func Embed(packageName, file string, dirs ...string) error
- func LocateChrome() string
- func PDF(url, script string, width, height int) ([]byte, error)
- func PNG(url, script string, x, y, width, height int, bg uint32, scale float32) ([]byte, error)
- func PromptDownload()
- type Bounds
- type Chrome
- func (c *Chrome) AddScriptToEvaluateOnNewDocument(script string) error
- func (c *Chrome) Back() error
- func (c *Chrome) Bind(name string, f bindingFunc) error
- func (c *Chrome) Bounds() (Bounds, error)
- func (c *Chrome) DisableContextMenu() error
- func (c *Chrome) DisableDefaultShortcuts() error
- func (c *Chrome) Eval(expr string) (json.RawMessage, error)
- func (c *Chrome) Forward() error
- func (c *Chrome) GetNavigationHistory() (*NavigationHistory, error)
- func (c *Chrome) Kill() error
- func (c *Chrome) Load(url string) error
- func (c *Chrome) PDF(width, height int) ([]byte, error)
- func (c *Chrome) PNG(x, y, width, height int, bg uint32, scale float32) ([]byte, error)
- func (c *Chrome) Reload(disableCache bool) error
- func (c *Chrome) Send(method string, params h) (json.RawMessage, error)
- func (c *Chrome) SetBounds(b Bounds) error
- type NavigationHistory
- type NavigationHistoryEntry
- type UI
- type Value
- type WindowState
Constants ¶
const ( // PageA4Width is a width of an A4 page in pixels at 96dpi PageA4Width = 816 // PageA4Height is a height of an A4 page in pixels at 96dpi PageA4Height = 1056 )
const DisableContextMenuScript = `
document.addEventListener('contextmenu', event => event.preventDefault());
`
DisableContextMenuScript is a browser-side script that disables Chrome's right-click context menu
const DisableShortcutsScript = `` /* 1674-byte string literal not displayed */
DisableShortcutsScript disables default shortcuts
Variables ¶
This section is empty.
Functions ¶
func Embed ¶
Embed is a helper function that embeds assets from the given directories into a Go source file. It is designed to be called from some generator script, see example project to find out how it can be used.
func LocateChrome ¶
func LocateChrome() string
LocateChrome returns a path to the Chrome binary, or an empty string if Chrome installation is not found.
func PDF ¶
PDF converts a given URL (may be a local file) to a PDF file. Script is evaluated before the page is printed to PDF, you may modify the contents of the page there of wait until the page is fully rendered. Width and height are page bounds in pixels. PDF by default uses 96dpi density. For A4 page you may use PageA4Width and PageA4Height constants.
func PNG ¶
PNG converts a given URL (may be a local file) to a PNG image. Script is evaluated before the "screenshot" is taken, so you can modify the contents of a URL there. Image bounds are provides in pixels. Background is in ARGB format, the default value of zero keeps the background transparent. Scale allows zooming the page in and out.
This function is most convenient to convert SVG to PNG of different sizes, for example when preparing Lorca app icons.
func PromptDownload ¶
func PromptDownload()
PromptDownload asks user if he wants to download and install Chrome, and opens a download web page if the user agrees.
Types ¶
type Bounds ¶
type Bounds struct { Left int `json:"left"` Top int `json:"top"` Width int `json:"width"` Height int `json:"height"` WindowState WindowState `json:"windowState"` }
Bounds defines settable window properties.
type Chrome ¶
Chrome represents a chrome process
func NewChromeWithArgs ¶
NewChromeWithArgs starts chrome process with arguments
func (*Chrome) AddScriptToEvaluateOnNewDocument ¶
AddScriptToEvaluateOnNewDocument adds JavaScript code to be evaluated when new document is evaluted
func (*Chrome) DisableContextMenu ¶
DisableContextMenu disables Chrome's default context menu on right mouse click
func (*Chrome) DisableDefaultShortcuts ¶
DisableDefaultShortcuts disables default shortucts like Ctr-N to open a new tab
func (*Chrome) Eval ¶
func (c *Chrome) Eval(expr string) (json.RawMessage, error)
Eval evaluates JavaScript expression in the browser and returns response
func (*Chrome) GetNavigationHistory ¶
func (c *Chrome) GetNavigationHistory() (*NavigationHistory, error)
GetNavigationHistory returns browser navigation history
func (*Chrome) Reload ¶
Reload reloads current page https://pptr.dev/#?product=Puppeteer&show=api-pagereloadoptions
type NavigationHistory ¶
type NavigationHistory struct {}
NavigationHistory represents browser navigation history
type NavigationHistoryEntry ¶
type NavigationHistoryEntry struct {}
NavigationHistoryEntry represents a single entry in navigation history
type UI ¶
type UI struct { *Chrome // contains filtered or unexported fields }
func New ¶
New returns a new HTML5 UI for the given URL, user profile directory, window size and other options passed to the browser engine. If URL is an empty string - a blank page is displayed. If user profile directory is an empty string - a temporary directory is created and it will be removed on ui.Close(). You might want to use "--headless" custom CLI argument to test your UI code.
type Value ¶
type Value interface { Err() error To(interface{}) error Float() float32 Int() int String() string Bool() bool Object() map[string]Value Array() []Value }
Value is a generic type of a JSON value (primitive, object, array) and optionally an error value.
type WindowState ¶
type WindowState string
WindowState defines the state of the Chrome window, possible values are "normal", "maximized", "minimized" and "fullscreen".
const ( // WindowStateNormal defines a normal state of the browser window WindowStateNormal WindowState = "normal" // WindowStateMaximized defines a maximized state of the browser window WindowStateMaximized WindowState = "maximized" // WindowStateMinimized defines a minimized state of the browser window WindowStateMinimized WindowState = "minimized" // WindowStateFullscreen defines a fullscreen state of the browser window WindowStateFullscreen WindowState = "fullscreen" )