tg_send_zon 0.0.25 → 0.0.26
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/tg_send_zon.rb +14 -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: 3f9a8bc35540d84ea8de345190e4945cda7a435ac9276f2b0671e765961c1bb9
|
4
|
+
data.tar.gz: a84ceb8e569b2af8a6abfb391edf37acd3c0731f7a8bad4cabc7418d0500e4a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f4b1294c14115c81d92e5700ea4a36fa23bb1031e436a0df58ce75f68e8c9fab2f572b9074ae6ac1542f0a8776e7532e0b7940565cc92551fc90d8180555cae
|
7
|
+
data.tar.gz: 8e41cf724557ee51cd7cce7d572bd0f14edfbed1a4a080863604aa9bc6eaa6a845be44701c463f42ba074e515335e9689ee8cbbc1efbe610f60d548d53e9cf0a
|
data/lib/tg_send_zon.rb
CHANGED
@@ -158,13 +158,26 @@ class Naver
|
|
158
158
|
@driver.execute_script("document.body.style.zoom = '70%'")
|
159
159
|
|
160
160
|
|
161
|
+
|
162
|
+
begin
|
163
|
+
#검색어가 입력되있는경우 크로스
|
164
|
+
wait = Selenium::WebDriver::Wait.new(:timeout => 1)
|
165
|
+
#요소가 나타날 때까지 3초 동안 기다립니다.
|
166
|
+
wait.until { @driver.find_element(:xpath, '//*[@class="Transition_slide icon-container-slide Transition_slide-active"]') }
|
167
|
+
@driver.find_element(:xpath, '//*[class="Transition_slide icon-container-slide Transition_slide-active"]').click
|
168
|
+
sleep(1)
|
169
|
+
rescue
|
170
|
+
end
|
171
|
+
|
172
|
+
|
173
|
+
|
161
174
|
begin
|
162
175
|
wait = Selenium::WebDriver::Wait.new(:timeout => 3)
|
163
176
|
#요소가 나타날 때까지 3초 동안 기다립니다.
|
164
177
|
wait.until { @driver.find_element(:xpath, '//*[@title="Open menu"]') }
|
165
178
|
check_cookie_login = 1
|
166
179
|
# puts'계정 세션 확인!! 로그인 skip.......'.yellow
|
167
|
-
|
180
|
+
|
168
181
|
|
169
182
|
rescue
|
170
183
|
|