fe_core_ext 0.33.1 → 0.33.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fe_core_ext/gem_ext/ferrum.rb +6 -2
- data/lib/fe_core_ext/version.rb +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: ffad0bf8d5fce2f7497408fc773f343ba62f4cc64e3501b9574ef1c6b0dcdeab
|
4
|
+
data.tar.gz: 744355564fe08e3e6c7585e59f5385a48573a55b8090e68b6c70bf91f4a1fe66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b67c1163648d047ba02bf1b0aa7b0f84742508dbfaaf2b0b993a97bbcee18b2a3ca30e90f03a7b6cda08175d4c3fb21037480f4b018e73d80ce79ffa0f7b16a2
|
7
|
+
data.tar.gz: 55e7aed956c5da1c2dd7913f53e5a72583c1e255e3a5debba422691859fc40a2fbedb868b40275232ca58b8a8e404add041e2de8552e8a86f17e1bf4d4b23581
|
@@ -1,12 +1,16 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'forwardable'
|
4
|
+
|
3
5
|
module Ferrum
|
4
6
|
class Browser
|
5
|
-
|
7
|
+
extend Forwardable
|
8
|
+
instance_delegate %i[wait_for_css wait_for_csses wait_for_xpath wait_for_xpaths] => :page
|
6
9
|
end
|
7
10
|
|
8
11
|
class Page
|
9
|
-
|
12
|
+
extend Forwardable
|
13
|
+
instance_delegate %i[wait_for_css wait_for_csses wait_for_xpath wait_for_xpaths] => :main_frame
|
10
14
|
end
|
11
15
|
|
12
16
|
class Frame
|
data/lib/fe_core_ext/version.rb
CHANGED