2023-02-14, fix kham concert area not auto select bug. support safari webdriver.
parent
78089189f1
commit
5688b1dc1c
|
@ -50,7 +50,7 @@ except Exception as exc:
|
||||||
import ssl
|
import ssl
|
||||||
ssl._create_default_https_context = ssl._create_unverified_context
|
ssl._create_default_https_context = ssl._create_unverified_context
|
||||||
|
|
||||||
CONST_APP_VERSION = u"MaxBot (2023.02.12)"
|
CONST_APP_VERSION = u"MaxBot (2023.02.14)"
|
||||||
|
|
||||||
CONST_HOMEPAGE_DEFAULT = "https://tixcraft.com"
|
CONST_HOMEPAGE_DEFAULT = "https://tixcraft.com"
|
||||||
URL_GOOGLE_OAUTH = 'https://accounts.google.com/o/oauth2/v2/auth/oauthchooseaccount?redirect_uri=https%3A%2F%2Fdevelopers.google.com%2Foauthplayground&prompt=consent&response_type=code&client_id=407408718192.apps.googleusercontent.com&scope=email&access_type=offline&flowName=GeneralOAuthFlow'
|
URL_GOOGLE_OAUTH = 'https://accounts.google.com/o/oauth2/v2/auth/oauthchooseaccount?redirect_uri=https%3A%2F%2Fdevelopers.google.com%2Foauthplayground&prompt=consent&response_type=code&client_id=407408718192.apps.googleusercontent.com&scope=email&access_type=offline&flowName=GeneralOAuthFlow'
|
||||||
|
@ -158,6 +158,8 @@ def get_chrome_options(webdriver_path, adblock_plus_enable, browser="chrome"):
|
||||||
chrome_options = webdriver.ChromeOptions()
|
chrome_options = webdriver.ChromeOptions()
|
||||||
if browser=="edge":
|
if browser=="edge":
|
||||||
chrome_options = webdriver.EdgeOptions()
|
chrome_options = webdriver.EdgeOptions()
|
||||||
|
if browser=="safari":
|
||||||
|
chrome_options = webdriver.SafariOptions()
|
||||||
|
|
||||||
# some windows cause: timed out receiving message from renderer
|
# some windows cause: timed out receiving message from renderer
|
||||||
if adblock_plus_enable:
|
if adblock_plus_enable:
|
||||||
|
@ -481,6 +483,18 @@ def get_driver_by_config(config_dict):
|
||||||
left_part = error_message.split("Stacktrace:")[0]
|
left_part = error_message.split("Stacktrace:")[0]
|
||||||
print(left_part)
|
print(left_part)
|
||||||
|
|
||||||
|
if browser == "safari":
|
||||||
|
driver = None
|
||||||
|
try:
|
||||||
|
driver = webdriver.Safari()
|
||||||
|
except Exception as exc:
|
||||||
|
error_message = str(exc)
|
||||||
|
#print(error_message)
|
||||||
|
left_part = None
|
||||||
|
if "Stacktrace:" in error_message:
|
||||||
|
left_part = error_message.split("Stacktrace:")[0]
|
||||||
|
print(left_part)
|
||||||
|
|
||||||
|
|
||||||
#print("try to close opened tabs.")
|
#print("try to close opened tabs.")
|
||||||
'''
|
'''
|
||||||
|
@ -5795,6 +5809,7 @@ def cityline_main(driver, url, config_dict):
|
||||||
if 'msg.cityline.com' in url:
|
if 'msg.cityline.com' in url:
|
||||||
try:
|
try:
|
||||||
driver.execute_script("goEvent();")
|
driver.execute_script("goEvent();")
|
||||||
|
time.sleep(0.2)
|
||||||
except Exception as exec1:
|
except Exception as exec1:
|
||||||
pass
|
pass
|
||||||
pass
|
pass
|
||||||
|
@ -6663,6 +6678,7 @@ def hkticketing_main(driver, url, config_dict):
|
||||||
for each_url in home_url_list:
|
for each_url in home_url_list:
|
||||||
if each_url == url:
|
if each_url == url:
|
||||||
hkticketing_home(driver)
|
hkticketing_home(driver)
|
||||||
|
time.sleep(0.2)
|
||||||
break
|
break
|
||||||
|
|
||||||
if 'queue.hkticketing.com/hotshow.html' in url:
|
if 'queue.hkticketing.com/hotshow.html' in url:
|
||||||
|
@ -6950,6 +6966,32 @@ def kham_area_auto_select(driver, area_auto_select_mode, area_keyword_1, area_ke
|
||||||
print("find #ticket-price-tbl date list fail")
|
print("find #ticket-price-tbl date list fail")
|
||||||
print(exc)
|
print(exc)
|
||||||
|
|
||||||
|
readme_table_mode = False
|
||||||
|
if area_list is None:
|
||||||
|
readme_table_mode = True
|
||||||
|
else:
|
||||||
|
if len(area_list)==0:
|
||||||
|
readme_table_mode = True
|
||||||
|
if readme_table_mode:
|
||||||
|
if show_debug_message:
|
||||||
|
print("for without table.salesTable")
|
||||||
|
try:
|
||||||
|
my_css_selector = "#readmeTable"
|
||||||
|
readme_table = driver.find_element(By.CSS_SELECTOR, my_css_selector)
|
||||||
|
if not readme_table is None:
|
||||||
|
if show_debug_message:
|
||||||
|
print("found readme_table")
|
||||||
|
target_table = readme_table.find_element(By.XPATH, '../..')
|
||||||
|
if not target_table is None:
|
||||||
|
if show_debug_message:
|
||||||
|
print("found target_table")
|
||||||
|
my_css_selector = "td > table > tbody > tr"
|
||||||
|
area_list = target_table.find_elements(By.CSS_SELECTOR, my_css_selector)
|
||||||
|
except Exception as exc:
|
||||||
|
print("find #ticket-price-tbl date list fail")
|
||||||
|
print(exc)
|
||||||
|
|
||||||
|
|
||||||
formated_area_list = None
|
formated_area_list = None
|
||||||
if area_list is not None:
|
if area_list is not None:
|
||||||
area_list_count = len(area_list)
|
area_list_count = len(area_list)
|
||||||
|
|
|
@ -9,5 +9,4 @@ playsound
|
||||||
pyperclip
|
pyperclip
|
||||||
ddddocr
|
ddddocr
|
||||||
urllib3>=1.21.1
|
urllib3>=1.21.1
|
||||||
numpy==1.21
|
numpy
|
||||||
daal==2021.4.0
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ import webbrowser
|
||||||
import pyperclip
|
import pyperclip
|
||||||
import base64
|
import base64
|
||||||
|
|
||||||
CONST_APP_VERSION = u"MaxBot (2023.02.12)"
|
CONST_APP_VERSION = u"MaxBot (2023.02.14)"
|
||||||
|
|
||||||
CONST_FROM_TOP_TO_BOTTOM = u"from top to bottom"
|
CONST_FROM_TOP_TO_BOTTOM = u"from top to bottom"
|
||||||
CONST_FROM_BOTTOM_TO_TOP = u"from bottom to top"
|
CONST_FROM_BOTTOM_TO_TOP = u"from bottom to top"
|
||||||
|
@ -1768,7 +1768,7 @@ def AdvancedTab(root, config_dict, language_code, UI_PADDING_X):
|
||||||
|
|
||||||
global combo_browser
|
global combo_browser
|
||||||
combo_browser = ttk.Combobox(frame_group_header, state="readonly")
|
combo_browser = ttk.Combobox(frame_group_header, state="readonly")
|
||||||
combo_browser['values']= ("chrome","firefox","edge")
|
combo_browser['values']= ("chrome","firefox","edge","safari")
|
||||||
combo_browser.set(config_dict['browser'])
|
combo_browser.set(config_dict['browser'])
|
||||||
combo_browser.grid(column=1, row=group_row_count, sticky = W)
|
combo_browser.grid(column=1, row=group_row_count, sticky = W)
|
||||||
|
|
||||||
|
@ -2222,7 +2222,7 @@ def main():
|
||||||
GUI_SIZE_HEIGHT = 594
|
GUI_SIZE_HEIGHT = 594
|
||||||
|
|
||||||
GUI_SIZE_MACOS = str(GUI_SIZE_WIDTH) + 'x' + str(GUI_SIZE_HEIGHT)
|
GUI_SIZE_MACOS = str(GUI_SIZE_WIDTH) + 'x' + str(GUI_SIZE_HEIGHT)
|
||||||
GUI_SIZE_WINDOWS=str(GUI_SIZE_WIDTH-60) + 'x' + str(GUI_SIZE_HEIGHT-90)
|
GUI_SIZE_WINDOWS=str(GUI_SIZE_WIDTH-60) + 'x' + str(GUI_SIZE_HEIGHT-70)
|
||||||
|
|
||||||
GUI_SIZE =GUI_SIZE_MACOS
|
GUI_SIZE =GUI_SIZE_MACOS
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue