17 lines
656 B
Python
17 lines
656 B
Python
from selenium.webdriver.common.by import By
|
|
from selenium.webdriver.support.ui import WebDriverWait
|
|
from selenium.webdriver.support import expected_conditions as EC
|
|
from selenium.webdriver.common.action_chains import ActionChains
|
|
from selenium.webdriver.common.keys import Keys
|
|
import time, re, random
|
|
from edit.action_elements import click_element, return_element, click_and_confirm_tab
|
|
from edit.price_cal import calculate_margin_and_price
|
|
|
|
# from ai.compare import find_most_similar_image_by_one
|
|
import logging
|
|
|
|
# 로거 인스턴스 가져오기
|
|
logger = logging.getLogger('default_logger')
|
|
|
|
def upload_to_market(driver, product_infos):
|
|
return None |