This commit is contained in:
Prox_Win10-B 2024-10-29 14:54:24 +09:00
parent db9eb058ac
commit c4590f296b
1 changed files with 1 additions and 1 deletions

View File

@ -642,7 +642,7 @@ class OptionHandler:
if checkbox_element:
# 필터링된 옵션에 포함되고, 선택 가능한 수량 내라면 선택
if name in filtered_option_names and (max_option_count == 0 or selected_count < max_option_count):
await checkbox_element.click()
# await checkbox_element.click()
self.logger.debug(f"옵션 '{name}' 체크함")
self.option_info['checked_states'][name] = True
selected_count += 1