01 2021 档案

摘要:1、启动Fiddler,打开菜单栏Rules Performances Simulate Modem Speeds这里打开了模拟调节速度 2、打开Fiddler Script,找到以下代码进行修改 if (m_SimulateModem) { // Delay sends by 300ms per 阅读全文
posted @ 2021-01-26 17:38 晓林5577 阅读(120) 评论(0) 推荐(0)
摘要:隐式等待 driver.implicitly_wait(5)# 访问网址driver.get("https://m.weibo.cn/")显示等待# 访问网址driver.get("https://m.weibo.cn/") # 点击大家都在搜driver.find_element_by_xpath 阅读全文
posted @ 2021-01-23 16:43 晓林5577 阅读(58) 评论(0) 推荐(0)
摘要:# 根据 id 属性进行定位, 只返回找到的第一个元素ele = driver.find_element_by_id("abc") # 根据 name 属性定位, 只返回找到的第一个元素ele = driver.find_element_by_name("abd") # 根据链接文本进行定位, 只返 阅读全文
posted @ 2021-01-23 16:36 晓林5577 阅读(119) 评论(0) 推荐(0)
摘要:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which is 阅读全文
posted @ 2021-01-22 15:35 晓林5577 阅读(232) 评论(0) 推荐(0)