puppeteer-bidi 0.0.1.beta5 → 0.0.1.beta6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/puppeteer/bidi/version.rb +1 -1
- data/lib/puppeteer/bidi.rb +1 -1
- data/sig/puppeteer/bidi.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4520bc0ace52d1165fefd304276d8c819f258802d4412e3b9a6432c235d10b0f
|
|
4
|
+
data.tar.gz: 1cb2d54fe0546bc416e1f087d919593df5c5ae6d2588503b3ab6cd7fd5e855a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 701df308c01563615b819482b6c0fceb35a236ec310ebb185bd0e2e479f06243c975f3bdca4cd597cd0e35e0d9eec90f1baa9678fadfdf7613c18eeb015dff8e
|
|
7
|
+
data.tar.gz: e15369956edb093601f3d9f79303986b2e4534c5d4ffec6b2f96cda81d395f5d283c1f903ba760d875e1fc2992761d100fc35c2adc2ff59487c9ef167d1c0354
|
data/lib/puppeteer/bidi.rb
CHANGED
|
@@ -38,7 +38,7 @@ module Puppeteer
|
|
|
38
38
|
# @rbs headless: bool -- Run browser in headless mode
|
|
39
39
|
# @rbs args: Array[String]? -- Additional browser arguments
|
|
40
40
|
# @rbs timeout: Numeric? -- Launch timeout in seconds
|
|
41
|
-
# @rbs block: (Browser -> void)? -- Optional block to execute with the browser instance
|
|
41
|
+
# @rbs &block: (Browser -> void)? -- Optional block to execute with the browser instance
|
|
42
42
|
# @rbs return: Browser? -- Browser instance (if no block given)
|
|
43
43
|
def self.launch(executable_path: nil, user_data_dir: nil, headless: true, args: nil, timeout: nil, &block)
|
|
44
44
|
if block
|
data/sig/puppeteer/bidi.rbs
CHANGED
|
@@ -8,7 +8,7 @@ module Puppeteer
|
|
|
8
8
|
# @rbs headless: bool -- Run browser in headless mode
|
|
9
9
|
# @rbs args: Array[String]? -- Additional browser arguments
|
|
10
10
|
# @rbs timeout: Numeric? -- Launch timeout in seconds
|
|
11
|
-
# @rbs block: (Browser -> void)? -- Optional block to execute with the browser instance
|
|
11
|
+
# @rbs &block: (Browser -> void)? -- Optional block to execute with the browser instance
|
|
12
12
|
# @rbs return: Browser? -- Browser instance (if no block given)
|
|
13
13
|
def self.launch: (?executable_path: String?, ?user_data_dir: String?, ?headless: bool, ?args: Array[String]?, ?timeout: Numeric?) ?{ (?) -> untyped } -> Browser?
|
|
14
14
|
|