from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
from selenium.common.exceptions import WebDriverException
import time
from datetime import datetime
def get_default_chrome_options():
options = webdriver.ChromeOptions()
options.add_argument("--no-sandbox")
return options
def getLocalSession():
startDate = ""
endDate = ""
# 读取时间配置文件
with open('D:/tmp/seller_open_sets.txt', 'r', encoding='utf-8') as file:
sets = file.readlines()
print(sets)
for setItem in sets:
setItem = setItem.strip()
if not setItem:
continue
if "开始时间" in setItem:
startDate = setItem.replace("开始时间:", "")
startDate = startDate.strip()
if "结束时间" in setItem:
endDate = setItem.replace("结束时间:", "")
endDate = endDate.strip()
if not startDate or not endDate:
print('未配置开始结束时间')
return
print(startDate)
print(endDate)
# return
# 指定日期
# startDate = "2025-01-25 18:00:00"
# endDate = "2025-01-25 18:15:00"
startDateObject = datetime.strptime(startDate, "%Y-%m-%d %H:%M:%S")
endDateObject = datetime.strptime(endDate, "%Y-%m-%d %H:%M:%S")
# 转为时间戳
startTime = startDateObject.timestamp()
endTime = endDateObject.timestamp()
nowTime = datetime.now().timestamp()
if nowTime < startTime or nowTime > endTime:
print('不在执行时间内')
return
# 浏览器用户数据目录路径
user_data_dir = "C:/Users/Admin/AppData/Local/Google/Chrome/User Data" # 替换为实际路径
# 设置 Chrome 选项
options = webdriver.ChromeOptions()
# options.add_argument("--no-sandbox")
# options.add_argument(f"--user-data-dir={user_data_dir}")
options.add_argument("--user-data-dir=C:/Users/Admin/AppData/Local/Google/Chrome/User Data")
options.add_argument("--profile-directory=Default") # 使用默认配置文件
options.add_experimental_option("detach", True)
# 启动浏览器
# service = webdriver.ChromeService()
driver = webdriver.Chrome(service=Service("D:/chromedriver/chromedriver.exe"), options=options)
# driver = webdriver.Chrome(service=service, options=options)
# driver = webdriver.Chrome(options=options)
# 打开 Amazon 商铺后台页面
# driver.get("https://sellercentral.amazon.com/")
driver.get("https://sellercentral.amazon.com/coupons/coupons-dashboard-page")
# 获取打开链接
with open('D:/tmp/seller_open_links.txt', 'r', encoding='utf-8') as file:
lines = file.readlines()
for line in lines:
print(line.strip()) # 去掉行末的换行符
line = line.strip()
driver.execute_script(f"window.open('{line}', '_blank');")
print(driver.window_handles)
tabs = driver.window_handles[1:]
# nums = 2
# while nums > 0:
while nowTime >= startTime and nowTime <= endTime:
for pageUrl in tabs:
driver.switch_to.window(pageUrl)
driver.implicitly_wait(1.5)
# todo 执行逻辑
element = driver.find_element(By.ID, "key")
element.send_keys("1")
# actButtons = driver.find_element(By.CLASS_NAME, "actions-cancel-edit")
# cancelButton = actButtons.find_element(By.TAG_NAME, 'kat-button')
# searchButton.click()
# driver.implicitly_wait(5)
# # 弹框确认
# actModal = actButtons.find_element(By.TAG_NAME, 'kat-modal')
# ynButtons = actModal.find_element(By.TAG_NAME, 'kat-button')
# # 否
# noButton = ynButtons[0].click()
# # 是
# # yesButton = ynButtons[1].click()
time.sleep(10)
nowTime = datetime.now().timestamp()
driver.quit()
# driver.get("https://sellercentral.amazon.com/")
# element = driver.find_element(By.ID, "key")
# element.send_keys("茅台酒")
# driver.implicitly_wait(5)
# searchButton = driver.find_element(By.CSS_SELECTOR,"#search .button")
# searchButton.click()
# driver.implicitly_wait(5)
# # 打开标签页
# # 打开新标签页
# driver.execute_script("window.open('https://www.baidu.com/', '_blank');")
# # 切换到新打开的标签页
# driver.switch_to.window(driver.window_handles[1])
# driver.implicitly_wait(5)
# # 打开一个新的标签页
# driver.execute_script("window.open('https://www.jd.com/', '_blank');")
# # 切换到新打开的标签页
# driver.switch_to.window(driver.window_handles[2])
# # 获取所有标签页句柄
# tabs = driver.window_handles
# print("Tabs:", tabs)
# 创建新实例
# driver1 = webdriver.Chrome(service=Service("D:/chromedriver/chromedriver.exe"), options=options)
# driver1.get("https://www.baidu.com/")
# driver.quit()
getLocalSession()
[BLOCK_START]
<开始时间>: 2025-02-05 13:40:00
<结束时间>: 2025-02-06 11:35:00
<打开链接>
https://www.jd.com/
https://www.jd.com/
</打开链接>
[BLOCK_END]
isRun = False
startDate = ""
endDate = ""
links = []
# 读取时间配置文件
with open("D:/tmp/seller_open_sets.txt", "r", encoding="utf-8") as file:
content = file.read()
pattern = r"\[BLOCK_START\](.*?)\[BLOCK_END\]"
matches = re.findall(pattern, content, re.DOTALL)
for match in matches:
print("匹配到的块:", match)
tmpLinks = []
inside_block = False
lines = match.splitlines()
print(lines)
for line in lines:
if not line:
continue
if "<开始时间>:" in line:
startDate = line.replace("<开始时间>:", "")
startDate = startDate.strip()
if "<结束时间>:" in line:
endDate = line.replace("<结束时间>:", "")
endDate = endDate.strip()
# 获取打开链接
if "<打开链接>" in line:
inside_block = True
tmpLinks = []
elif "</打开链接>" in line:
inside_block = False
links = tmpLinks
elif inside_block:
tmpLinks.append(line.strip())
if not startDate or not endDate:
print('未配置开始结束时间')
continue
# 指定日期
# startDate = "2025-01-25 18:00:00"
# endDate = "2025-01-25 18:15:00"
startDateObject = datetime.strptime(startDate, "%Y-%m-%d %H:%M:%S")
endDateObject = datetime.strptime(endDate, "%Y-%m-%d %H:%M:%S")
# 转为时间戳
startTime = startDateObject.timestamp()
endTime = endDateObject.timestamp()
nowTime = datetime.now().timestamp()
if nowTime < startTime or nowTime > endTime:
# print('不在执行时间内')
continue
isRun = True
break
if not isRun:
print("未匹配到运行时间段")
return
print('匹配到的开始时间: ' + startDate)
print('匹配到的结束时间: ' + endDate)
print(links)