摘要: 去重: from functools import reduce #导入排序模块 # 列表里的字典元素去重复 def list_dict_duplicate_removal(data_list): run_function = lambda x, y: x if y in x else x + [y 阅读全文
posted @ 2023-01-11 12:02 爱家家的卡卡 阅读(793) 评论(0) 推荐(0) 编辑
摘要: # 获取拖动按钮位置并拖动 def slide_auth(self): try: time.sleep(random.randint(6, 8)) # check have slide verify elements or not if (self.driver.find_element(By.ID 阅读全文
posted @ 2023-01-11 10:21 爱家家的卡卡 阅读(71) 评论(0) 推荐(0) 编辑
摘要: from playwright.sync_api import Playwright, sync_playwright, expect def run(playwright: Playwright) -> None: user_data_dir = "/Users/kaka/Library/Appl 阅读全文
posted @ 2023-01-11 10:19 爱家家的卡卡 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 原文链接: Python:获取“ 3年前的今天”的日期时间 Python: get datetime for '3 years ago today' 在Python中,如何获取" 3年前的今天"的datetime对象? 更新:FWIW,我不太在乎准确性……也就是说,今天是2月29日,我不在乎我的答案 阅读全文
posted @ 2023-01-11 10:09 爱家家的卡卡 阅读(369) 评论(1) 推荐(0) 编辑