This commit is contained in:
parent
6b2eebd9f1
commit
ff1949e14e
BIN
data/app.db
BIN
data/app.db
Binary file not shown.
|
|
@ -53,7 +53,9 @@ class ShoppingLensScraper:
|
|||
f'--user-data-dir="{user_data_dir}" '
|
||||
f'--disk-cache-dir="{cache_dir}" '
|
||||
f'--load-extension="{extension_path}" '
|
||||
f'--ignore-certificate-errors' # 인증서 경고 무시
|
||||
f'--ignore-certificate-errors ' # 인증서 경고 무시
|
||||
f'--ignore-ssl-errors ' # SSL 오류 무시
|
||||
f'--disable-web-security ' # 웹 보안 비활성화 (필요 시)
|
||||
)
|
||||
|
||||
# 창이 완전히 생성될 때까지 대기
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ class CustomTableWidget(QTableWidget):
|
|||
테이블 열의 너비를 조정합니다.
|
||||
"""
|
||||
self.setColumnWidth(0, 50) # 선택 (체크박스)
|
||||
self.setColumnWidth(1, 50) # 선택 (체크박스)
|
||||
self.setColumnWidth(1, 50) # ID
|
||||
self.setColumnWidth(2, 500) # 상품명
|
||||
self.setColumnWidth(3, 150) # 이미지 URL
|
||||
self.setColumnWidth(4, 90) # 가격
|
||||
|
|
|
|||
Loading…
Reference in New Issue