pythoncss定位_python之selenium定位(css篇)⼀、css相关定位
1、常见选择器:
表⽰id选择 。
. 表⽰class选择。
‘>’ 表⽰⼦元素,层级。
⼀个空个也表⽰⼀个⼦元素,但是是所有后代⼦元素,相当于xpath中的相对路径
2、css属性定位:
例如,
⽤id定位:"#kw"
⽤class定位:".s_ipt"
⽤标签定位:input
3、css⽤其他属性定位,仍如上例:
[type=text][name=wd][maxlength=100][autocomplete=off]
4、css标签,仍如上例:
input.s_ipt input#kw input[id=‘kw’]
5、css:层级关系:
from#from>span#s_kw_wrap>span>input.s_ipt
6、css:索引:
复制代码
css也可以通过索引nth-child(1)来定位⼦元素,直接翻译过来就是第⼏个⼩孩
总结:选择标签后,第⼏个⼩孩即可
Select控件第三个Opel
#select>select>option:nth-child(3)
CheckBox第⼀个Volvo
#checkbox>input:nth-child(1)
复制代码
#通过索引nth-of-type(2)来定位⼦元素,按照分类指定
选择select的saab
#select>select>option:nth-of-type(2);
#通过索引nth-of-type(2)来定位⼦元素,按照分类指定
选择select的saab
#select>select>option:nth-of-type(2);
#选择 id 为 radio 的 div 下的第 1 个⼦节点
selenium获取cookiediv#radio>input:nth-of-type(4)+label
##选择id 为radio 的div 下的第4 个input 节点之后挨着的 label节点
div#radio>input:nth-of-type(4)~label
7、 css:逻辑运算:
css同样也可以实现逻辑运算,同时匹配两个属性,这⾥跟xpath不⼀样,⽆需写and关键字
[type=‘checkbox’][name=‘checkbox1’]
⼆、等待元素加载:
1
WebdriverWait(driver,timeouts,poll_frequency,ignored_exceptions).until(expected_conditions.visibility())
presence_of_element_located
—WebDriverWait(driver,10).until(EC.title_is(u"百度⼀下,你就知道"))
‘’‘判断title,返回布尔值’’’
—WebDriverWait(driver,10).until(EC.title_contains(u"百度⼀下"))
‘’‘判断title,返回布尔值’’’
—WebDriverWait(driver,10).until(EC.presence_of_element_located((By.ID,‘kw’)))
‘’‘判断某个元素是否被加到了dom树⾥,并不代表该元素⼀定可见,如果定位到就返回WebElement’’’
—WebDriverWait(driver,10).until(EC.visibility_of_element_located((By.ID,‘su’)))
‘’‘判断某个元素是否被添加到了dom⾥并且可见,可见代表元素可显⽰且宽和⾼都⼤于0’’’
—WebDriverWait(driver,10).until(EC.visibility_of(driver.find_element(by=By.ID,value=‘kw’)))
‘’‘判断元素是否可见,如果可见就返回这个元素’’’
—WebDriverWait(driver,10).until(EC.presence_of_all_elements_located((By.CSS_SELECTOR,’.mnav’)))
‘’‘判断是否⾄少有1个元素存在于dom树中,如果定位到就返回列表’’’
—WebDriverWait(driver,10).until(EC.visibility_of_any_elements_located((By.CSS_SELECTOR,’.mnav’)))
‘’‘判断是否⾄少有⼀个元素在页⾯中可见,如果定位到就返回列表’’’
—WebDriverWait(driver,10)._to_be_present_in_element((By.XPATH,"//*[@id=‘u1’]/a[8]"),u’设置’))
‘’‘判断指定的元素中是否包含了预期的字符串,返回布尔值’’’
—WebDriverWait(driver,10)._to_be_present_in_element_value((By.CSS_SELECTOR,’#su’),u’百度⼀下’))‘’‘判断指定元素的属性值中是否包含了预期的字符串,返回布尔值’’’
复制代码
—WebDriverWait(driver,10).until(EC.frame_to_be_available_and_switch_to_it(locator))
‘’‘判断该frame是否可以switch进去,如果可以的话,返回True并且switch进去,否则返回False’’’
#注意这⾥并没有⼀个frame可以切换进去
复制代码
—WebDriverWait(driver,10).until(EC.invisibility_of_element_located((By.CSS_SELECTOR,’#swfEveryCookieWrap’)))
‘’‘判断某个元素在是否存在于dom或不可见,如果可见返回False,不可见返回这个元素’’’
#注意#swfEveryCookieWrap在此页⾯中是⼀个隐藏的元素
复制代码
—WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//[@id=‘u1’]/a[8]"))).click()
‘’‘判断某个元素中是否可见并且是enable的,代表可点击’’’
driver.find_element_by_xpath("//[@id=‘wrapper’]/div[6]/a[1]").click()
#WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//*[@id=‘wrapper’]/div[6]/a[1]"))).click()
复制代码
—WebDriverWait(driver,10).until(EC.staleness_of(driver.find_element(By.ID,‘su’)))
‘’‘等待某个元素从dom树中移除’’’
#这⾥没有到合适的例⼦
—WebDriverWait(driver,10).until(EC.element_to_be_selected(driver.find_element(By.XPATH,"//*[@id=‘nr’]/option[1]")))‘’‘判断某个元素是否被选中了,⼀般⽤在下拉列表’’’
—WebDriverWait(driver,10).until(EC.element_selection_state_to_be(driver.find_element(By.XPATH,"//*
[@id=‘nr’]/option[1]"),True))
‘’‘判断某个元素的选中状态是否符合预期’’’
—WebDriverWait(driver,10).until(EC.element_located_selection_state_to_be((By.XPATH,"//[@id=‘nr’]/option[1]"),True))‘’‘判断某个元素的选中状态是否符合预期’’’
driver.find_element_by_xpath(".//[@id=‘gxszButton’]/a[1]").click()
—
instance = WebDriverWait(driver,10).until(EC.alert_is_present())
‘’‘判断页⾯上是否存在alert,如果有就切换到alert并返回alert的内容’’’
标签:10,python,selenium,driver,EC,element,WebDriverWait,until,css
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论