selenium練習 python

# -*- coding: utf-8 -*-
"""
Created on Wed Dec 18 15:08:40 2019

@author: Administrator
"""
from selenium import webdriver
#打開瀏覽器
driver = webdriver.Firefox(executable_path="geckodriver")
#打開網頁
driver.get('https://accounts.douban.com/passport/login_popup?login_source=anony')
#切換到賬號密碼登陸
driver.find_element_by_class_name('account-tab-account').click()
#輸入賬號
driver.find_element_by_id('username').send_keys("13016961703")
#輸入密碼
driver.find_element_by_id('password').send_keys("w123456")
#點擊登陸
driver.find_element_by_xpath('//a[contains(@class,"btn btn-account")]').click()
#切換到主頁
driver.get('https://www.douban.com/')
#獲取cookies值
cookies = driver.get_cookies()
print(cookies)
#頁面截圖
driver.save_screenshot('22.jpg')
#點擊退出登陸
driver.find_element_by_class_name('bn-more').click()

driver.find_element_by_link_text('退出').click()
發佈了13 篇原創文章 · 獲贊 14 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章