python selenium--常用函数1】的更多相关文章

操作字符串的常用函数 函数 描述(返回值) 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 # 字符串格式化…
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…
# -*- 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)  …
2017-07-03 23:26:08 1..replace(self, old, new, count=-1) replace()函数将旧字符串替换为新字符串,最后一个参数count为可选项,表示替换最多count次(小于count). 注意这种替换返回替换后的字符串,源字符串是不改变的. s='ABCDEF' out=s.replace('EF','ef') print(s) print(out) 输出: ABCDEF ABCDef 2..find(self, sub, start=0, e…
转: 新建实例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 解…
一.模拟手机打开页面(H5测试) from selenium import webdriver mobile_emulation = {'deviceName':'iPhone X'} options = webdriver.ChromeOptions() options.add_experimental_option('mobileEmulation',mobile_emulation) driver = webdriver.Chrome(chrome_options=options) dri…