diff --git a/allocate.go b/allocate.go index ce647255..7bf947c7 100644 --- a/allocate.go +++ b/allocate.go @@ -404,6 +404,12 @@ func UserAgent(userAgent string) ExecAllocatorOption { return Flag("user-agent", userAgent) } +// IgnoreCertErrors is the command line option to ignore errors with the +// SSL certificate +func IgnoreCertErrors(a *ExecAllocator) { + Flag("ignore-certificate-errors", true)(a) +} + // NoSandbox is the Chrome comamnd line option to disable the sandbox. func NoSandbox(a *ExecAllocator) { Flag("no-sandbox", true)(a)