在你写脚本时候肯定是会用到selenium的,但是这里的库有的时候又不能自动导入,这里记录一下selenium操作的一些方法:


文章目录

  • 导入库
  • EC方法
  • By方法
  • 包含文字
  • 切换frame


导入库

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

等待某元素可以被点击

WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,'//*[@id="casLoginForm"]/p[5]/button'))).click()

EC方法

#这两个条件类验证title,验证传入的参数title是否等于或在driver.title中
EC.title_is
EC.title_contains
#这两个条件验证元素是否出现,传入的参数都是元组类型的locator,如(By.ID, 'kw')
#一个只要一个符合条件的元素加载出来就通过;另一个必须所有符合条件的元素都加载出来才行
EC.presence_of_element_located((By.CSS_SELECTOR,'.ui-page > div.ui-page-wrap'))
EC.presence_of_all_elements_located((By.CSS_SELECTOR,'.ui-page > div.ui-page-wrap'))
#这三个条件验证元素是否可见,前两个传入参数是元组类型的locator,第三个传入WebElement
#第一个和第三个其实质是一样的
EC.visibility_of_element_located
EC.invisibility_of_element_located
EC.visibility_of
#这两个人条件判断某段文本是否出现在某元素中,一个判断元素的text,一个判断元素的value属性
EC.text_to_be_present_in_element
EC.text_to_be_present_in_element_value
#这个条件判断frame是否可切入,可传入locator元组或者直接传入定位方式:id、name、index或WebElement
EC.frame_to_be_available_and_switch_to_it
#这个条件判断是否有alert出现
EC.alert_is_present
#这个条件判断元素是否可点击,传入locator
EC.element_to_be_clickable
#这四个条件判断元素是否被选中,第一个条件传入WebElement对象,第二个传入locator元组
#第三个传入WebElement对象以及状态,相等返回True,否则返回False
#第四个传入locator以及状态,相等返回True,否则返回False
EC.element_to_be_selected
EC.element_located_to_be_selected
EC.element_selection_state_to_be
EC.element_located_selection_state_to_be
#最后一个条件判断一个元素是否仍在页面中,传入WebElement对象,可以判断页面是否刷新
EC.staleness_of

By方法

find_element(By.ID,"kw")
find_element(By.NAME,"wd")
find_element(By.CLASS_NAME,"s_ipt")
find_element(By.TAG_NAME,"input")
find_element(By.LINK_TEXT,u"新闻")  ##包含了文字
find_element(By.PARTIAL_LINK_TEXT,u"新")
find_element(By.XPATH,"//*[@class='bg s_btn']")
find_element(By.CSS_SELECTOR,"span.bg s_btn_wr>input#su")

包含文字

WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//*[contains(text(), '请点击此处补报')]"))).click()

find_element(By.LINK_TEXT,u"新闻")

切换frame

如果你的selenium怎么点击都点击不上去的话,那你就要考虑是不是iframe需要切换了,因为js前端会有很多frame组成的。

1.有id,并且唯一,直接写id
driver.switch_to_frame("x-URS-iframe")
driver.switch_to.frame("x-URS-iframe")

2.有name,并且唯一,直接写name
driver.switch_to_frame("xxxx")
driver.switch_to.frame("xxxx")

3.无id,无name,先定位iframe元素
iframe = driver.find_elements_by_tag_name("iframe")[0]
driver.switch_to_frame(iframe)
driver.switch_to.frame(iframe)

切换完了frame如果还需要回到主页面,记得用如下代码切换回来。driver.switch_to.default_content() 其他操作frame的详细方法见: