轉:selenium webdriver+python基本操作

來源:互聯網
上載者:User

標籤:

轉自: http://blog.163.com/[email protected]/blog/static/1017337222013102310617946/

匯入模組:

from selenium import webdriver

from selenium.common.exceptions import NoSuchElementException

選擇瀏覽器: driver = webdriver.Firefox()

開啟url: driver.get("http://www.baidu.com")

等待: driver.implicitly_wait(30)

        driver.set_page_load_timeout(30)

driver.set_script_timeout(30)

關閉瀏覽器: driver.quit()/driver.close()

前進/後退: driver.forward()/driver.back()

重新整理: driver.refresh()

返回當前頁面標題:driver.title

返回當前頁面url:driver.current_url

返回當前瀏覽器的所有視窗:driver.window_handles

返回當前瀏覽器的視窗控制代碼:driver.current_window_handle

選擇視窗: driver.switch_to_window(“window_name”)

對話方塊操作: driver.switch_to_alert() #選擇視窗對象

    accept()  #點擊確認

    dismiss() #點擊取消

    text       #擷取文本值

    send_keys(“key”)   #輸入值

定位元素(單個):driver.find_element(by=”id”,value=None)

Id定位:  driver.find_element_by_id(“id_name”)

Name定位: driver.find_element_by_name(“name”)

Css定位:  driver.find_element_by_css_selector(“#foo”)

Xpath定位:driver.find_element_by_xpath(“//select[@id=’nr’]/option[2]”)

Link定位: driver.find_element_by_link_text(u”連結”)

Tag定位:  driver.find_element_by_tag_name(“foo”)

截取當前頁面: driver.get_screenshot_as_file(‘/Screenshots/foo.png‘

 

其他:

http://blog.163.com/[email protected]/blog/#m=0&t=1&c=fks_084068087080089070084083094095085086080068087085081065086

轉:selenium webdriver+python基本操作

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.