Python
-
使用editor.md插件后Selenium无法发送内容的问题
使用editor.md插件后无法发送内容的问题 思路 找到前边一个元素, 用Tab键切换到我想定位的editor.md元素, 用ele = self.driver.switch_to.active_element …… -
Python中的命名关键字参数【*】以及位置关键字参数【/】
今天在查看Python文档的多线程部分时发现如下代码 class threading.Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None) 问题 …… -
心理FM登录以及播放小尝试
from selenium import webdriver from time import sleep import os import json import pprint """ 心理FM站点测试 """ index_url = 'http://fm.xinli001.c……