window10系统,先cmd打开chrome, chrome --remote-debugging-port=9222 执行脚本 from selenium import webdriver from selenium.webdriver.chrome.options import Options ...
分类:
其他好文 时间:
2020-06-14 16:32:39
阅读次数:
221
import matplotlib.pyplot as pltimport numpy as npgs = plt.GridSpec(3,3)fig = plt.figure(figsize=(6,6))x1 = np.array([1,3,2,5])y1 = np.array([4,3,7,2]) ...
分类:
其他好文 时间:
2020-06-14 13:08:02
阅读次数:
69
ctf中xss题目常常需要一个管理员小机器点击用户点击的url 之前没有接触过,刚好最近又有这个需要,所以这次尝试写写小机器人的写法 环境准备 首先需要selenium这个python的库 pip install selenium==2.48.0 它的作用是用来webdriver接口的,简而言之是用 ...
分类:
其他好文 时间:
2020-06-13 19:16:05
阅读次数:
58
【故障处理】ORA-28040: No matching authentication protocol 1> 告警日志中频繁出现Using deprecated SQLNET.ALLOWED_LOGON_VERSION parameter、 ORA-28040: No matching authe ...
分类:
其他好文 时间:
2020-06-13 10:30:44
阅读次数:
49
给定一个包含了一些 0 和 1 的非空二维数组 grid 。 一个 岛屿 是由一些相邻的 1 (代表土地) 构成的组合,这里的「相邻」要求两个 1 必须在水平或者竖直方向上相邻。你可以假设 grid 的四个边缘都被 0(代表水)包围着。 找到给定的二维数组中最大的岛屿面积。(如果没有岛屿,则返回面积 ...
分类:
其他好文 时间:
2020-06-13 00:57:29
阅读次数:
87
from appium import webdriver import unittest import time class QQlogin(unittest.TestCase): def setUp(self): desired_caps = {'platformName': 'Android', ...
分类:
移动开发 时间:
2020-06-12 16:09:29
阅读次数:
58
package LeetCode_1411 /** * 1411. Number of Ways to Paint N × 3 Grid * https://leetcode.com/problems/number-of-ways-to-paint-n-3-grid/description/ * * ...
分类:
其他好文 时间:
2020-06-12 12:47:40
阅读次数:
58
1、Can not connect to the Service chromedriver等 尝试了很多办法,各种版本对应,重新安装 最后网上查找办法 127.0.0.1 localhost这一句!!加上后,解决了问题 参考解决问题地址:https://blog.csdn.net/crisschan ...
分类:
Web程序 时间:
2020-06-11 21:29:46
阅读次数:
83
report zjty_demo_08. tables: zjty_eng. type-pools: icon, slis. class zcl_alv_grid definition deferred. data: ok_code type sy-ucomm, begin of gs_englis ...
分类:
其他好文 时间:
2020-06-11 16:49:14
阅读次数:
98
一、操作cookie 1 from selenium import webdriver 2 3 driver_path = 'D:\chromedriver\chromedriver.exe' 4 driver = webdriver.Chrome(executable_path=driver_pa ...
分类:
Web程序 时间:
2020-06-11 16:41:26
阅读次数:
64