selenium2.0关于python的常用函数】的更多相关文章

转: 新建实例driver = webdriver.Chrome() 1.获取当前页面的Url函数 方法:current_url 实例: driver.current_url 2.获取元素坐标 方法:location 解释:首先查找到你要获取元素的,然后调用location方法 实例: driver.find_element_by_xpath("//*[@id='tablechart']/tbody/tr[14]/td[9]").location 3.表单的提交 方法:submit 解…
1.通过标签属性Id查找元素 方法:find_element_by_id(element_id) 实例:driver.find_element_by_id("iptUsername") 2.通过标签属性name查找元素 方法:find_element_by_name(element_name) 实例:driver.find_element_by_id("inputPwname") 3.通过标签Xpath路径查找元素 方法:find_element_by_xpath(…
driver = webdriver.Chrome(chromeDriver) 1.返回当前会话中的cookies:driver.get_cookies() 2.根据cookies name查找:driver.get_cookie(cookiename) 3.截取当前页面:get_screenshot_as_file(filename),如:get_screenshot_as_file("D:\\nm.bmp") 4.获取当前窗口的坐标:driver.get_window_positi…
操作字符串的常用函数 函数 描述(返回值) str.capitalize() 将字符串的第一个字符大写 str.title() 返回标题化的字符串,即每个单词的首字母都大写 str.upper() 全大写 str.lower() 全小写 len(str) 返回字符串的长度.用法与其他不同. str.count(substring[, start[,end]]) 统计字符串里某个子串出现的次数.三个参数:搜索的子串.搜索的开始位置.结束位置.后2个可选,缺省时默认为0.-1 可选参数为在字符串搜索…
Python-字符串常用字符串 字符串是一种表示文本的数据类型,使用单引号和双引号及三引号表示 访问字符串中的值字符串的每个字符都对应一个下标,下标编号是从0开始 转义字符字符串的格式化输出切片常用函数整理:find和indexcount统计replace 替换split 指定分隔符切片capitalize :第一个字符大写其他全小写title :所有单词首字母大写,其他均小写upper :所有字母大写lower :所有字母小写startswith:检索字符串是否以指定子串开头endswith:…
# 字符串常用函数# 转大写print('bmw'.upper()) # BMW# 转小写print('BMW'.lower()) # bmw# 首字母大写print('how aae you ?'.capitalize()) # How aae you ?# 设置每个单次首字母大写print('michael jackson'.title()) # Michael Jackson# 大写转小写 小写的转大写print('abcDEF'.swapcase()) # ABCdef # 字符串格式化…
# -*- coding: utf-8 -*- # @Author: fangbei # @Date: 2017-08-26 # @Original: price_str = '30.14, 29.58, 26.36, 32.56, 32.82' price_str = price_str.replace(' ', '') #删除空格 price_array = price_str.split(',') #转成数组 date_array = [] date_base = 20170118 '''…
1.execmd = "su - " + ou + " -c 'sqlplus / as sysdba << EOF\n " + execmd3 + '\n' + execmd4 + '\n' + execmd5 + '\n' + execmd6 + "'" ## 解释  \n 是换行, + + 中间的是变量, " " 是中间是里面的字符. 2.split('SQL>') 是把一个长串数字的字符串,按照 SQ…
列表list1.append(x)         将x添加到列表末尾 list1.sort()                对列表元素排序 list1.reverse()            将列表元素逆序 list1.index(x)             返回第一次出现元素x的索引值 list1.insert(i,x)            在位置i处插入新元素x list1.count(x)                返回元素x在列表中的数量 list1.remove(x)  …
1.map map是python内置的高阶函数,它接收一个函数和一个列表,函数依次作用在列表的每个元素上,返回一个可迭代map对象. class map(object): """ map(func, *iterables) --> map object Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortes…