playwright-ruby-client 1.20.0 → 1.20.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fa3fb99ecc1273e529e04b47bebf13546ecfcfc930b10b14c5fe3d0816af724
4
- data.tar.gz: 6c74c799eccc9cf4c0c7dd120e10cdd0bfdc8dbd3e23713d2a0842fc53edb6f2
3
+ metadata.gz: a0ac92a21e56cb8136a67c37b4f0a7f5edd5668124c8f54a7d676fd384568fd6
4
+ data.tar.gz: 8d1f15d0f9c3dfc190d0cc0976814ab6bf90a927af722d4164861e57c93564a2
5
5
  SHA512:
6
- metadata.gz: bcf0cf470b95f65380b584a3f6d4489be51f5479d23695ca8f6dd16549df1d9a4af07b112a5e5ca779d7915b86cd77b5644becea1b58fdddf527638e547734e3
7
- data.tar.gz: 389a1c2b5e73fa6cd62703d487b864af1135822aaeaebeedcef24a6911c23cdd4f39e4353ea3d36a7ca367b5ae4fe8d88b65eb98336bd2a4afcfe5740dea3866
6
+ metadata.gz: 746dcb1563f9777c374572d2b7ecfbde7833a3ce1b546933958ae920a417d1e474e27c8b569b3fc25cc117735e07bdb420dec838baadebe6375ab83d13c959bd
7
+ data.tar.gz: a9dca767fdfec65ba0ef854677e600ef00fabfbdd60ad534fb5182e292c603eb4cbb1b1eb77440f85415d5189bce902d3899389033c591f6e1d1d925de67afc4
@@ -13,6 +13,7 @@ module Playwright
13
13
  @timeout_settings = TimeoutSettings.new
14
14
  @service_workers = Set.new
15
15
  @background_pages = Set.new
16
+ @owner_page = nil
16
17
 
17
18
  @tracing = ChannelOwners::Tracing.from(@initializer['tracing'])
18
19
  @request = ChannelOwners::APIRequestContext.from(@initializer['APIRequestContext'])
@@ -51,9 +51,11 @@ module Playwright
51
51
  @counter.increment
52
52
 
53
53
  Concurrent::Promises.future do
54
- @handler.call(route, request)
55
- rescue => err
56
- puts err, err.backtrace
54
+ begin
55
+ @handler.call(route, request)
56
+ rescue => err
57
+ puts err, err.backtrace
58
+ end
57
59
  end
58
60
  end
59
61
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playwright
4
- VERSION = '1.20.0'
5
- COMPATIBLE_PLAYWRIGHT_VERSION = '1.20.0'
4
+ VERSION = '1.20.1'
5
+ COMPATIBLE_PLAYWRIGHT_VERSION = '1.20.1'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playwright-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - YusukeIwaki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-20 00:00:00.000000000 Z
11
+ date: 2022-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -396,5 +396,5 @@ requirements: []
396
396
  rubygems_version: 3.3.7
397
397
  signing_key:
398
398
  specification_version: 4
399
- summary: The Ruby binding of playwright driver 1.20.0
399
+ summary: The Ruby binding of playwright driver 1.20.1
400
400
  test_files: []