playwright-ruby-client 1.15.0 → 1.15.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 713f6bab2d64c7b9315e680ea5c94946ed2108763534959d586ca841a249a5a3
4
- data.tar.gz: 2cd01a6413698de9d0c414153846282516ebabc5e386e8ece152523277e3da2f
3
+ metadata.gz: 36f932a83b81283925520630e54a3c4b578d3231f2540f49ce27acf206c14e1e
4
+ data.tar.gz: 13d5171781c20e6aba7df33828c2ec569d975328de72dff21bb31ae8d51838ea
5
5
  SHA512:
6
- metadata.gz: d8dc6824ec2d34c1659f242e42b221c6ed8278b85cd931912c1610ee82a1cf89a71771a21949c30eeea436183c05cdafa745e0c9decc7d2e676406f4c5c24397
7
- data.tar.gz: f138cd13891e77502ee9c7643720b120216be1757cb089c5e1b4e2c42e43ac037f23fb2341023cc1109a94530787b712cb57853209b61862ad6a426a69308554
6
+ metadata.gz: e25671c14ede2650a5cd2a2a9e2542e7c629e8bb4ff64c57fff23c91cf9b6cfdfda2549944118659a3a4db968c27c037b74e18e042d5d7c74f1dac9f073a6d50
7
+ data.tar.gz: 05c22aaeb2cf8cdb61ed1f7ad67222ded55a8b14be33c7f1d8fb24dbb22e7040bd888216335e03b02dec716e0e3eb4f87351f9fddc28fae2dcd0cf04b311bbc8
@@ -71,7 +71,7 @@ module Playwright
71
71
  {
72
72
  apiName: api_name,
73
73
  stack: stacks.map do |loc|
74
- { file: loc.absolute_path, line: loc.lineno, function: loc.label }
74
+ { file: loc.absolute_path || '', line: loc.lineno, function: loc.label }
75
75
  end,
76
76
  }
77
77
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playwright
4
- VERSION = '1.15.0'
5
- COMPATIBLE_PLAYWRIGHT_VERSION = '1.15.0'
4
+ VERSION = '1.15.1'
5
+ COMPATIBLE_PLAYWRIGHT_VERSION = '1.15.2'
6
6
  end
@@ -44,13 +44,13 @@ module Playwright
44
44
  end
45
45
 
46
46
  # @nodoc
47
- def page=(req)
48
- wrap_impl(@impl.page=(unwrap_impl(req)))
47
+ def context=(req)
48
+ wrap_impl(@impl.context=(unwrap_impl(req)))
49
49
  end
50
50
 
51
51
  # @nodoc
52
- def context=(req)
53
- wrap_impl(@impl.context=(unwrap_impl(req)))
52
+ def page=(req)
53
+ wrap_impl(@impl.page=(unwrap_impl(req)))
54
54
  end
55
55
 
56
56
  # -- inherited from EventEmitter --
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.15.0
4
+ version: 1.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - YusukeIwaki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-22 00:00:00.000000000 Z
11
+ date: 2021-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -385,5 +385,5 @@ requirements: []
385
385
  rubygems_version: 3.2.22
386
386
  signing_key:
387
387
  specification_version: 4
388
- summary: The Ruby binding of playwright driver 1.15.0
388
+ summary: The Ruby binding of playwright driver 1.15.2
389
389
  test_files: []