playwright-ruby-client 1.49.0 → 1.49.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/playwright/locator_assertions_impl.rb +1 -1
- data/lib/playwright/version.rb +2 -2
- data/lib/playwright_api/page.rb +5 -5
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb8b0e304afaec4e361b4ac3c267890121a4fa7723356cccf6e853d22f3482a1
|
4
|
+
data.tar.gz: 2323dde24b24615d52b3b25d075e62036853877cc1d820b4a4d1da9df1059130
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a1e69cd3f9a84a1e9599eab785e6232c96c5babd98d14f7ff53305eafa3d7487622988f034f9df9632a642c46b1ea0ffbbc6084a3f33f74ea4ef823b3654c8a
|
7
|
+
data.tar.gz: c9bfa47bf0be03755aa6df0b01c1c12e23ca8a402a48be1de3eeaa3fd37edf6f5500feadc0e8abde2f71d835c21fc91b965f28157beb5a5d7669e3da063939b7
|
@@ -466,7 +466,7 @@ module Playwright
|
|
466
466
|
def to_be_in_viewport(ratio: nil, timeout: nil)
|
467
467
|
expect_impl(
|
468
468
|
"to.be.in.viewport",
|
469
|
-
{ timeout: timeout, expectedNumber: ratio },
|
469
|
+
{ timeout: timeout, expectedNumber: ratio }.compact,
|
470
470
|
nil,
|
471
471
|
"Locator expected to be in viewport"
|
472
472
|
)
|
data/lib/playwright/version.rb
CHANGED
data/lib/playwright_api/page.rb
CHANGED
@@ -1789,11 +1789,6 @@ module Playwright
|
|
1789
1789
|
raise NotImplementedError.new('wait_for_event is not implemented yet.')
|
1790
1790
|
end
|
1791
1791
|
|
1792
|
-
# @nodoc
|
1793
|
-
def start_js_coverage(resetOnNavigation: nil, reportAnonymousScripts: nil)
|
1794
|
-
wrap_impl(@impl.start_js_coverage(resetOnNavigation: unwrap_impl(resetOnNavigation), reportAnonymousScripts: unwrap_impl(reportAnonymousScripts)))
|
1795
|
-
end
|
1796
|
-
|
1797
1792
|
# @nodoc
|
1798
1793
|
def start_css_coverage(resetOnNavigation: nil, reportAnonymousScripts: nil)
|
1799
1794
|
wrap_impl(@impl.start_css_coverage(resetOnNavigation: unwrap_impl(resetOnNavigation), reportAnonymousScripts: unwrap_impl(reportAnonymousScripts)))
|
@@ -1804,6 +1799,11 @@ module Playwright
|
|
1804
1799
|
wrap_impl(@impl.stop_js_coverage)
|
1805
1800
|
end
|
1806
1801
|
|
1802
|
+
# @nodoc
|
1803
|
+
def start_js_coverage(resetOnNavigation: nil, reportAnonymousScripts: nil)
|
1804
|
+
wrap_impl(@impl.start_js_coverage(resetOnNavigation: unwrap_impl(resetOnNavigation), reportAnonymousScripts: unwrap_impl(reportAnonymousScripts)))
|
1805
|
+
end
|
1806
|
+
|
1807
1807
|
# @nodoc
|
1808
1808
|
def stop_css_coverage
|
1809
1809
|
wrap_impl(@impl.stop_css_coverage)
|
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.49.
|
4
|
+
version: 1.49.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YusukeIwaki
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -192,7 +192,7 @@ dependencies:
|
|
192
192
|
- - ">="
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0'
|
195
|
-
description:
|
195
|
+
description:
|
196
196
|
email:
|
197
197
|
- q7w8e9w8q7w8e9@yahoo.co.jp
|
198
198
|
executables: []
|
@@ -395,7 +395,7 @@ homepage: https://github.com/YusukeIwaki/playwright-ruby-client
|
|
395
395
|
licenses:
|
396
396
|
- MIT
|
397
397
|
metadata: {}
|
398
|
-
post_install_message:
|
398
|
+
post_install_message:
|
399
399
|
rdoc_options: []
|
400
400
|
require_paths:
|
401
401
|
- lib
|
@@ -411,7 +411,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
411
411
|
version: '0'
|
412
412
|
requirements: []
|
413
413
|
rubygems_version: 3.3.27
|
414
|
-
signing_key:
|
414
|
+
signing_key:
|
415
415
|
specification_version: 4
|
416
|
-
summary: The Ruby binding of playwright driver 1.49.
|
416
|
+
summary: The Ruby binding of playwright driver 1.49.1
|
417
417
|
test_files: []
|