- 安装selenium 类
- 安装chromedriver
- 定位腾讯企业邮箱的元素
http://npm.taobao.org/mirrors...
# -*- coding:utf8 -*- from selenium import webdriver import time from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC driver_path = 'C:\\Users\\silence_sean\\AppData\\Local\\Google\\Chrome\\Application\\chromedriver.exe' driver = webdriver.Chrome(executable_path=driver_path) driver.get('https://exmail.qq.com/login') driver.find_element_by_class_name('js_show_pwd_panel').click() driver.find_element_by_id('inputuin').send_keys('xxxxx.com') driver.find_element_by_id('pp').send_keys('xxxxx') driver.find_element_by_id('btlogin').click()
经常使用方法函数 ====== 1. 加载浏览器驱动: webdriver.Chrome() 2. 打开页面:get() 3. 关闭浏览器:quit() 4. 最大化窗口: maximize\_window() 5. 设置窗口参数:set\_window\_size(600,800) 6. 后退到前一页: back() 7. 前进到后一页: forward() 8. 刷新页面: refresh() 9. 元素定位: * id定位:find\_element\_by\_id() * name定位:find\_element\_by\_name() * class定位:find\_element\_by\_class() * tag定位:find\_element\_by\_tag\_name() * link定位:find\_element\_by\_link\_text() * partial link 定位: find\_element\_by\_partial\_link\_text() * CSS定位:find\_element\_by\_css\_selector() * Xpath定位: * 绝对路径:find\_element\_by\_xpath("/html/body/div\[x\]/div\[x\]/div/div/dl\[x\]/dt/a") * 元素属性:find\_element\_by\_xpath("//unput\[@id=‘kw’\]") * 层级与属性结合:find\_element\_by\_xpath("//form\[@id=‘loginForm’\]/ul/input\[1\]") * 逻辑运算符:find\_element\_by\_xpath("//input\[@id=‘kw’ and@class=‘s\_ipt’\]") 10. 清除文本:clear() 11. 模拟按键输入:send\_keys(\*value)11.模拟按键输入:send\_keys(\*value) 12. 单击元素:click() 13. 提交表单(至关于"回车"):submit() 14. 鼠标事件:
#coding:utf-8 from selenium.webdriver.common.action_chains import ActionChains ActionChains(driver).***opration(opra)*** .perform() elemengt = driver.find_element_by_xpath("xpath") ActionChains(driver). double_click(DoubleClick) .perform()#双击 ActionChains(driver). context_click(RightClick) .perform()#右击 ActionChains(driver). drag_and_drop(Start, End) .perform()#拖放 ActionChains(driver). move_to_element(Above) .perform()#悬停 ActionChains(driver). click_and_hold(leftclick) .perform()#按下 ```
元素等待:css
显示等待html
#coding=utf-8 from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC base_url = "http://www.baidu.com" driver = webdriver.Firefox() driver.implicitly_wait(5) '''隐式等待和显示等待都存在时,超时时间取两者中较大的''' locator = (By.ID,'kw') driver.get(base_url) 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).until(EC.text_to_be_present_in_element((By.XPATH,"//*[@id='u1']/a[8]"),u'设置')) '''判断指定的元素中是否包含了预期的字符串,返回布尔值''' WebDriverWait(driver,10).until(EC.text_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的内容''' print(instance.text) instance.accept() driver.close()
隐式等待web
from selenium.common.exceptions import NoSuchElementException drive.implicitly_wait(10)
得到title并打印chrome
#coding:utf-8 from selenium import webdriver title = driver.title print(title) if title == u"百度一下,你就知道":#比较title print("title yes!") else: print("title no!") url = driver.current_url#得到当前URL并打印 print(url)
滚动条设置(2种方式):npm
# 使用scrollTop滑动到底部 js = "var action=document.documentElement.scrollTop=10000" driver.execute_script(js) # 使用scrollTo设置位置 driver.set_window_size(600, 600) js = "window.scrollTo(100,450);" driver.execute_script(js)