码迷,mamicode.com
首页 >  
搜索关键字:could not find driver    ( 34312个结果
[Leetcode] 136. Single Number
Given a non empty array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runti ...
分类:其他好文   时间:2020-04-06 09:48:06    阅读次数:63
Linux基础知识三-基本命令1
1.文件搜索命令 1.1 locate 文件名 注意: locate只能接文件名; locate查找的范围是后台数据库:var/lib下,由于db的更新周期是一天,搜索前使用updatedb更新。 locate的查找速率快于find命令。 1.2 find 搜索范围 搜索条件 查找范围:通过必选参数 ...
分类:系统相关   时间:2020-04-06 09:35:35    阅读次数:97
[LC] 973. K Closest Points to Origin
We have a list of points on the plane. Find the K closest points to the origin (0, 0). (Here, the distance between two points on a plane is the Euclid ...
分类:其他好文   时间:2020-04-06 09:25:29    阅读次数:73
web自动化之basepage/loginpage
# 公共页 basepage.pyclass BasePage: def __init__(self, driver): self.driver = driver # 登录页面 loginpage.pyfrom selenium.webdriver.support.ui import WebDriv ...
分类:Web程序   时间:2020-04-06 00:09:29    阅读次数:95
162. Find Peak Element
Problem : A peak element is an element that is greater than its neighbors. Given an input array nums, where nums[i] ≠ nums[i+1], find a peak element a ...
分类:其他好文   时间:2020-04-05 23:55:14    阅读次数:129
gpio驱动编写流程
步骤1.获取设备节点 使用of_find_node_by_path获取设备树中的节点信息 步骤2.获取gpio属性 使用of_get_named_gpio获取设备树中gpio的属性信息 步骤3.设置输入输出模式 使用gpio_direction_output设置gpio为输入或输出,以及默认电平 步 ...
分类:其他好文   时间:2020-04-05 22:36:28    阅读次数:103
Java 取出字符串中第一个重复出现的字母
public void findRepeat(String string){ for (int i=0;i<=string.length()-1;i++){ String temp=string.substring(0,i)+string.substring(i+1); System.out.pri ...
分类:编程语言   时间:2020-04-05 20:49:45    阅读次数:192
重建基于vue的多入口项目——项目的重建和配置文件的修改部分
1.新建项目 新建vue项目直接通过命令行即可,过程比较简单,具体参照:https://www.jianshu.com/p/02b12c600c7b 需要注意的是,直接在需要生成的目录下用命令行操作即可,不用先新建该项目的文件夹。 2.遇到报错 Error: Cannot find module ' ...
分类:其他好文   时间:2020-04-05 20:28:44    阅读次数:92
基础英语(二):Unit2
一,基础词汇 1,more than more than 20 years I am more than happy to help you I am sure conditions over there will more than satisfy your requirements she wa ...
分类:其他好文   时间:2020-04-05 18:46:02    阅读次数:151
Python+Selenium练习(十六)-复选框【Cherkbox】
练习场景:百度登录时,勾选下次自动登录按钮; 一、简单版 具体代码如下: # coding=utf-8 import time from selenium import webdriver driver = webdriver.Chrome() driver.maximize_window() dr ...
分类:编程语言   时间:2020-04-05 18:21:38    阅读次数:128
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!