njongto_duo 0.0.72 → 0.0.75

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/njongto_duo.rb +24 -24
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7265faa5184b2453e5e34479389c064ed7e82d44662f6430474fa7df14b2a3f9
4
- data.tar.gz: 5f39cf1d3368acbfbf4503049732f1241243cbaf43004ffd985b483adcd5b46b
3
+ metadata.gz: a84f13e40b76162f469ed53cdb8d80e409706ac767835c7d84bec16e86c9835e
4
+ data.tar.gz: 1b70cbe0887d104d519685004b54b677eec44a7eac845030eb2405b0e6e41693
5
5
  SHA512:
6
- metadata.gz: 45f3ac7f59e744c6cd250d8100d73a500daf8d6e9334ca530ef0661ce69ecbcec15d6d2336c53877bb1fd30e13dc3af55869c671d1c2338e1396ae0dd05d3464
7
- data.tar.gz: 379a3bcfdf8abb24976bcf9382922a1f1ea18bb455491ba9ebd9b622a8261e51023c55eb22f51a13244bec86c10a5a2ce3421f6dce91feb817f48c893159947f
6
+ metadata.gz: 3bbce65d189dc66800e6df1d4768f6cb03d558d28989fd7cfea03d83bb2d1e015bb91c278b56643b3b6c03223ef04aed021d1b20bde5a65b3dc67e6d69ccec40
7
+ data.tar.gz: 6325d731738420b90fe8dd61629cdfa4598a4130902c64f53cf3879fb3fbb3e229447e918a8b2ec1895f8f43a0dbe9fb8dc46d241a37e7ea7a13b6e35fe8141f
data/lib/njongto_duo.rb CHANGED
@@ -30,11 +30,11 @@ class Naver
30
30
  FileUtils.mkdir_p(naver_cookie_dir) unless File.exist?(naver_cookie_dir)
31
31
  if proxy == ''
32
32
 
33
- system(%{"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe" https://naver.com/ --remote-debugging-port=9222 --user-data-dir=C:/naver_cookie/#{user_id} --no-first-run --no-default-browser-check --disable-sync})
33
+ system(%{"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe" https://my.naver.com/ --remote-debugging-port=9222 --user-data-dir=C:/naver_cookie/#{user_id} --no-first-run --no-default-browser-check --disable-sync})
34
34
 
35
35
  else
36
36
 
37
- system(%{"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe" https://naver.com/ --remote-debugging-port=9222 --user-data-dir=C:/naver_cookie/#{user_id} --proxy-server=#{proxy.to_s.force_encoding('utf-8').to_s} --no-first-run --no-default-browser-check --disable-sync})
37
+ system(%{"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe" https://my.naver.com/ --remote-debugging-port=9222 --user-data-dir=C:/naver_cookie/#{user_id} --proxy-server=#{proxy.to_s.force_encoding('utf-8').to_s} --no-first-run --no-default-browser-check --disable-sync})
38
38
 
39
39
  end
40
40
  end
@@ -186,41 +186,42 @@ class Naver
186
186
 
187
187
 
188
188
  chrome_start(proxy, user_id)
189
- @driver.get('https://www.naver.com')
190
- puts'[Step.01] 계정 로그인 및 세션 확인.......'.yellow
191
-
189
+
192
190
 
193
191
  sleep(1)
194
192
 
195
193
  begin
196
- wait = Selenium::WebDriver::Wait.new(:timeout => 7)
194
+ wait = Selenium::WebDriver::Wait.new(:timeout => 5)
197
195
  #요소가 나타날 때까지 3초 동안 기다립니다.
198
- wait.until { @driver.find_element(:xpath, '//*[@class="MyView-module__btn_logout___bsTOJ"]') }
196
+ wait.until { @driver.find_element(:xpath, '//*[@class="HeaderView_email__beGsy"]') }
199
197
  sleep(1.5)
200
198
  check_cookie_login = 1
201
- puts'[Step.02] 계정 세션 확인!! 로그인 skip.......'.yellow
199
+ puts' 계정 세션 확인!! 로그인 skip.......'.yellow
202
200
  sleep(2.5)
203
201
  rescue
204
- wait = Selenium::WebDriver::Wait.new(:timeout => 7)
205
- #요소가 나타날 때까지 3초 동안 기다립니다.
206
- wait.until { @driver.find_element(:xpath, '//*[@class="MyView-module__link_login___HpHMW"]') }
207
- sleep(1.5)
208
- @driver.find_element(:xpath, '//*[@class="MyView-module__link_login___HpHMW"]').click
209
- check_cookie_login = 0
210
- sleep(1)
202
+ begin
203
+ wait = Selenium::WebDriver::Wait.new(:timeout => 3)
204
+ wait.until { @driver.find_element(:xpath, '//*[@class="HeaderView_login_text__pFpJ_"]') }
205
+ sleep(1.5)
206
+ @driver.find_element(:xpath, '//*[@class="HeaderView_login_text__pFpJ_"]').click
207
+ check_cookie_login = 0
208
+ sleep(1)
209
+ rescue
210
+ @driver.quit
211
+ return 0
212
+ end
211
213
  end
212
214
 
213
215
  if check_cookie_login == 0
214
- puts'[Step.02] 계정 세션이 없거나 기간 만료로 인해 로그인 시도.......'.yellow
216
+ puts' 계정 세션이 없거나 기간 만료로 인해 로그인 시도.......'.yellow
215
217
  # @driver.find_element(:xpath, '//*[@id="right-content-area"]/div[1]/div[1]/div/a').click
216
218
  sleep(3)
217
219
  begin
218
220
  wait = Selenium::WebDriver::Wait.new(:timeout => 7)
219
221
  #요소가 나타날 때까지 3초 동안 기다립니다.
220
- wait.until { @driver.find_element(:xpath, '//*[@for="switch"]') }
221
- sleep(1.5)
222
- @driver.find_element(:xpath, '//*[@id="login_keep_wrap"]/div[1]/label').click
222
+ wait.until { @driver.find_element(:xpath, '//*[@id="id"]') }
223
223
  sleep(1.5)
224
+
224
225
  @driver.find_element(:xpath, '//*[@id="id"]').click
225
226
  Clipboard.copy(user_id)
226
227
  @driver.action.key_down(:control).send_keys('v').key_up(:control).perform
@@ -229,7 +230,7 @@ class Naver
229
230
  Clipboard.copy(user_pw)
230
231
  @driver.action.key_down(:control).send_keys('v').key_up(:control).perform
231
232
  sleep(1.5)
232
- @driver.find_element(:xpath, '//*[@id="log.login"]').click
233
+ @driver.find_element(:xpath, '//*[@type="submit" and @class="btn_check next_step" and @id="submit_btn"]').click
233
234
  sleep(2.5)
234
235
  rescue => e
235
236
  puts '-[√] 로딩 지연 접속 실패.......'.red
@@ -251,10 +252,9 @@ class Naver
251
252
  end
252
253
 
253
254
  begin
254
- wait = Selenium::WebDriver::Wait.new(:timeout => 3)
255
+ wait = Selenium::WebDriver::Wait.new(:timeout => 5)
255
256
  #요소가 나타날 때까지 3초 동안 기다립니다.
256
- wait.until { @driver.find_element(:xpath, '//*[@class="MyView-module__btn_logout___bsTOJ"]') }
257
-
257
+ wait.until { @driver.find_element(:xpath, '//*[@class="HeaderView_email__beGsy"]') }
258
258
  rescue => e
259
259
  puts '-[√] 로그인 실패.......'.red
260
260
  @driver.window_handles.each do |handle|
@@ -268,7 +268,7 @@ class Naver
268
268
  end
269
269
  return 0
270
270
  @driver.quit
271
- end
271
+ end
272
272
  end
273
273
 
274
274
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: njongto_duo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.72
4
+ version: 0.0.75
5
5
  platform: ruby
6
6
  authors:
7
7
  - zon
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-05-30 00:00:00.000000000 Z
10
+ date: 2025-07-09 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: File to Clipboard gem
13
13
  email: mymin26@naver.com