摘要: import os import logging import time from logging import handlers class Logger(): level_relations = { 'debug':logging.DEBUG, 'info':logging.INFO, 'war 阅读全文
posted @ 2020-11-24 16:33 日天达人 阅读(61) 评论(0) 推荐(0) 编辑
摘要: import os from PIL import ImageGrab # 获取当前目录 import time import sys import pandas as pd import win32api import win32con VK_CODE = { 'backspace': 0x08, 阅读全文
posted @ 2020-11-24 16:31 日天达人 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 1.定义和用法 :nth-child(n) 选择器匹配属于其父元素的第 N 个子元素,不论元素的类型。 n 可以是数字、关键词或公式。 <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> 1 2 3 4 5 6 选取上面结构里面的li ul 阅读全文
posted @ 2020-11-24 15:19 日天达人 阅读(3653) 评论(0) 推荐(0) 编辑
摘要: JavaScript 在父窗口中获取iframe中的元素 1 2 3 4 5 6 7 8 9 10 11 格式:window.frames["iframe的name值"].document.getElementById("iframe中控件的ID").click(); 实例:window.frame 阅读全文
posted @ 2020-11-24 14:37 日天达人 阅读(271) 评论(0) 推荐(0) 编辑