2024-03-15, update for kktix

master
CHUN YU YAO 2024-03-30 11:59:49 +08:00
parent f3c8bbbd20
commit 3c5fba70d7
7 changed files with 31 additions and 40 deletions

View File

@ -45,7 +45,7 @@ except Exception as exc:
print(exc) print(exc)
pass pass
CONST_APP_VERSION = "MaxBot (2024.03.14)" CONST_APP_VERSION = "MaxBot (2024.03.15)"
CONST_MAXBOT_ANSWER_ONLINE_FILE = "MAXBOT_ONLINE_ANSWER.txt" CONST_MAXBOT_ANSWER_ONLINE_FILE = "MAXBOT_ONLINE_ANSWER.txt"
CONST_MAXBOT_CONFIG_FILE = "settings.json" CONST_MAXBOT_CONFIG_FILE = "settings.json"
@ -3595,43 +3595,26 @@ def kktix_events_press_next_button(driver):
def kktix_press_next_button(driver): def kktix_press_next_button(driver):
ret = False ret = False
wait = WebDriverWait(driver, 1) css_select = "div.register-new-next-button-area > button"
next_step_button = None but_button_list = None
try: try:
# method #1 but_button_list = driver.find_elements(By.CSS_SELECTOR, css_select)
#form_actions_div = None
#form_actions_div = driver.find_element(By.CSS_SELECTOR, '#registrationsNewApp')
#next_step_button = form_actions_div.find_element(By.CSS_SELECTOR, 'div.form-actions button.btn-primary')
# method #2
# next_step_button = driver.find_element(By.CSS_SELECTOR, '#registrationsNewApp div.form-actions button.btn-primary')
# method #3 wait
next_step_button = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, '#registrationsNewApp div.form-actions button.btn-primary')))
if not next_step_button is None:
if next_step_button.is_enabled():
next_step_button.click()
ret = True
except Exception as exc: except Exception as exc:
print("wait form-actions div wait to be clickable Exception:")
print(exc) print(exc)
#pass
if not next_step_button is None:
is_visible = False
try:
if next_step_button.is_enabled():
is_visible = True
except Exception as exc:
pass pass
if is_visible: if not but_button_list is None:
button_count = len(but_button_list)
#print("button_count:",button_count)
if button_count > 0:
try: try:
driver.execute_script("arguments[0].click();", next_step_button) #print("click on last button")
but_button_list[button_count-1].click()
ret = True ret = True
except Exception as exc: except Exception as exc:
print(exc)
pass pass
return ret return ret
def kktix_captcha_inputed_text(captcha_inner_div): def kktix_captcha_inputed_text(captcha_inner_div):
@ -4643,11 +4626,14 @@ def kktix_reg_captcha(driver, config_dict, fail_list, is_finish_checkbox_click,
# PS: auto-focus() when empty inferred_answer_string with empty inputed text value. # PS: auto-focus() when empty inferred_answer_string with empty inputed text value.
input_text_css = 'div.custom-captcha-inner > div > div > input' input_text_css = 'div.custom-captcha-inner > div > div > input'
next_step_button_css = '#registrationsNewApp div.form-actions button.btn-primary' next_step_button_css = ''
submit_by_enter = False submit_by_enter = False
check_input_interval = 0.2 check_input_interval = 0.2
is_answer_sent, fail_list = fill_common_verify_form(driver, config_dict, inferred_answer_string, fail_list, input_text_css, next_step_button_css, submit_by_enter, check_input_interval) is_answer_sent, fail_list = fill_common_verify_form(driver, config_dict, inferred_answer_string, fail_list, input_text_css, next_step_button_css, submit_by_enter, check_input_interval)
# due multi next buttons(pick seats/best seats)
kktix_press_next_button(driver)
return fail_list, is_question_popup return fail_list, is_question_popup
def kktix_reg_new_main(driver, config_dict, fail_list, played_sound_ticket, is_finish_checkbox_click): def kktix_reg_new_main(driver, config_dict, fail_list, played_sound_ticket, is_finish_checkbox_click):

View File

@ -23,7 +23,7 @@ import sys
import threading import threading
import webbrowser import webbrowser
CONST_APP_VERSION = "MaxBot (2024.03.14)" CONST_APP_VERSION = "MaxBot (2024.03.15)"
CONST_MAXBOT_LAUNCHER_FILE = "config_launcher.json" CONST_MAXBOT_LAUNCHER_FILE = "config_launcher.json"
CONST_MAXBOT_CONFIG_FILE = "settings.json" CONST_MAXBOT_CONFIG_FILE = "settings.json"

View File

@ -11,7 +11,7 @@ import requests
import asyncio import asyncio
import nodriver as uc import nodriver as uc
CONST_APP_VERSION = "MaxBot (2024.03.14)" CONST_APP_VERSION = "MaxBot (2024.03.15)"
CONST_MAXBOT_CONFIG_FILE = "settings.json" CONST_MAXBOT_CONFIG_FILE = "settings.json"
USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36" USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"

View File

@ -29,7 +29,7 @@ from datetime import datetime
import requests import requests
CONST_APP_VERSION = "MaxBot (2024.03.14)" CONST_APP_VERSION = "MaxBot (2024.03.15)"
CONST_MAXBOT_CONFIG_FILE = "settings.json" CONST_MAXBOT_CONFIG_FILE = "settings.json"
CONST_MAXBOT_KKTIX_CONFIG_FILE = "kktix.json" CONST_MAXBOT_KKTIX_CONFIG_FILE = "kktix.json"

View File

@ -50,7 +50,7 @@ try:
except Exception as exc: except Exception as exc:
pass pass
CONST_APP_VERSION = "MaxBot (2024.03.14)" CONST_APP_VERSION = "MaxBot (2024.03.15)"
CONST_MAXBOT_ANSWER_ONLINE_FILE = "MAXBOT_ONLINE_ANSWER.txt" CONST_MAXBOT_ANSWER_ONLINE_FILE = "MAXBOT_ONLINE_ANSWER.txt"
CONST_MAXBOT_CONFIG_FILE = "settings.json" CONST_MAXBOT_CONFIG_FILE = "settings.json"
@ -759,7 +759,7 @@ def get_default_config():
config_dict["advanced"]["auto_reload_page_interval"] = 0.1 config_dict["advanced"]["auto_reload_page_interval"] = 0.1
config_dict["advanced"]["reset_browser_interval"] = 0 config_dict["advanced"]["reset_browser_interval"] = 0
config_dict["advanced"]["max_dwell_time"] = 30 config_dict["advanced"]["max_dwell_time"] = 60
config_dict["advanced"]["proxy_server_port"] = "" config_dict["advanced"]["proxy_server_port"] = ""
config_dict["advanced"]["window_size"] = "512,1024" config_dict["advanced"]["window_size"] = "512,1024"

View File

@ -152,10 +152,16 @@ function kktix_area_keyword(settings, base_info, register_info)
if(auto_click_next_btn) { if(auto_click_next_btn) {
let $next_btn = $('div.register-new-next-button-area > button'); let $next_btn = $('div.register-new-next-button-area > button');
if($next_btn) {
if($next_btn.length>1) {
$next_btn.last().click();
} else {
$next_btn.click(); $next_btn.click();
} }
} }
} }
}
}
} else { } else {
console.log("not target_area found.") console.log("not target_area found.")
} }
@ -191,7 +197,7 @@ function dom_ready()
if(!dom_ready()) { if(!dom_ready()) {
myInterval = setInterval(() => { myInterval = setInterval(() => {
dom_ready(); dom_ready();
}, 100); }, 1000);
} }

View File

@ -160,11 +160,10 @@ function kktix_force_auto_reload_by_timer()
{ {
if(settings) { if(settings) {
//console.log("auto reload for kktix"); //console.log("auto reload for kktix");
// TODO: load from settings.advanced.max_dwell_time
if(settings.advanced.kktix_account.length > 0) { if(settings.advanced.kktix_account.length > 0) {
setInterval(() => { setInterval(() => {
location.reload();; location.reload();;
}, 30 * 1000); }, 45 * 1000);
} }
} }
} }