python selenium學習筆記

Selenium 介紹css

Selenium 是 python 中的一個第三方庫,是一個用於Web應用程序測試的工具。Selenium測試直接運行在瀏覽器中,就像真正的用戶在操做同樣。支持的瀏覽器包括IE(7, 8, 9, 10, 11),Mozilla Firefox,Safari,Google Chrome,Opera等。這個工具的主要功能包括:測試與瀏覽器的兼容性——測試你的應用程序看是否可以很好得工做在不一樣瀏覽器和操做系統之上。測試系統功能——建立迴歸測試檢驗軟件功能和用戶需求。html

Selenium 安裝python

直接用命令安裝:python -m pip install seleniumandroid

安裝完成後,輸入python -m pip show selenium可查看當前的selenium版本,以下圖:git

安裝驅動程序github

不一樣的瀏覽器須要安裝不一樣的驅動程序。web

     1.Chrome 的驅動 chromedriver 下載地址:http://chromedriver.storage.googleapis.com/index.html 或 https://npm.taobao.org/mirrors/chromedriver/chrome

     2.Firefox 的驅動 geckodriver 下載地址:https://github.com/mozilla/geckodriver/releases/      npm

     3.IE 的驅動 IEdriver 下載地址:http://www.nuget.org/packages/Selenium.WebDriver.IEDriver/api

 具體安裝內容參加上一篇chromedriver安裝步驟http://www.javashuo.com/article/p-yxogcend-bw.html

Selenium 屬性

上面準備工做已經完成,能夠使用 selenium 進行 web 頁面自動化測試。在編寫程序前,先學習一下 selenium 屬性。

經過 python 命令查看 selenium 屬性以下:

>>> from selenium import webdriver
>>> dir(webdriver)

['ActionChains', 'Android', 'BlackBerry', 'Chrome', 'ChromeOptions', 'DesiredCapabilities', 'Edge', 'Firefox', 'FirefoxOptions', 'FirefoxProfile', 'Ie', 'IeOptions', 'Opera', 'PhantomJS', 'Proxy', 'Remote', 'Safari', 'TouchActions', 'WebKitGTK', 'WebKitGTKOptions', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__', '__version__', 'android', 'blackberry', 'chrome', 'common', 'edge', 'firefox', 'ie', 'opera', 'phantomjs', 'remote', 'safari', 'support', 'webkitgtk']

經過 webdriver 聲明瀏覽器對象:

from selenium import webdriver

browser = webdriver.Chrome()
browser = webdriver.Firefox()

經過 python 命令繼續查看瀏覽器對象的屬性:

>>> browser = webdriver.Chrome()

DevTools listening on ws://127.0.0.1:58648/devtools/browser/09b261e1-332b-4f90-a54a-6841735bdcfd
>>> dir(browser)
['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__enter__', '__eq__', '__exit__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__lute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '_'__subclasshook__', '__weakref__', '_file_detector', '_is_remote',_reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_file_detector', '_is_remote', , 'close', 'command_executor', 'create_options', 'create_web_elemen'_mobile', '_switch_to', '_unwrap_value', '_web_element_cls', '_wrap_value', 'add_cookie', 'application_cache', 'back', 'capabilities' 'execute_async_script', 'execute_cdp_cmd', 'execute_script', 'file, 'close', 'command_executor', 'create_options', 'create_web_element', 'current_url', 'current_window_handle', 'delete_all_cookies', '', 'find_element_by_link_text', 'find_element_by_name', 'find_elemedelete_cookie', 'desired_capabilities', 'error_handler', 'execute', 'execute_async_script', 'execute_cdp_cmd', 'execute_script', 'filelements_by_css_selector', 'find_elements_by_id', 'find_elements_by__detector', 'file_detector_context', 'find_element', 'find_element_by_class_name', 'find_element_by_css_selector', 'find_element_by_idward', 'fullscreen_window', 'get', 'get_cookie', 'get_cookies', 'ge', 'find_element_by_link_text', 'find_element_by_name', 'find_element_by_partial_link_text', 'find_element_by_tag_name', 'find_element, 'get_window_rect', 'get_window_size', 'implicitly_wait', 'launch__by_xpath', 'find_elements', 'find_elements_by_class_name', 'find_elements_by_css_selector', 'find_elements_by_id', 'find_elements_by_enshot', 'service', 'session_id', 'set_network_conditions', 'set_palink_text', 'find_elements_by_name', 'find_elements_by_partial_link_text', 'find_elements_by_tag_name', 'find_elements_by_xpath', 'for'stop_client', 'switch_to', 'switch_to_active_element', 'switch_to_ward', 'fullscreen_window', 'get', 'get_cookie', 'get_cookies', 'get_log', 'get_network_conditions', 'get_screenshot_as_base64', 'get_screenshot_as_file', 'get_screenshot_as_png', 'get_window_position', 'get_window_rect', 'get_window_size', 'implicitly_wait', 'launch_app', 'log_types', 'maximize_window', 'minimize_window', 'mobile', 'name', 'orientation', 'page_source', 'quit', 'refresh', 'save_screenshot', 'service', 'session_id', 'set_network_conditions', 'set_page_load_timeout', 'set_script_timeout', 'set_window_position', 'set_window_rect', 'set_window_size', 'start_client', 'start_session', 'stop_client', 'switch_to', 'switch_to_active_element', 'switch_to_alert', 'switch_to_default_content', 'switch_to_frame', 'switch_to_window', 'title', 'w3c', 'window_handles']


瀏覽器對象經過 get 屬性 獲取 URL 打開頁面:

from selenium import webdriver

browser = webdriver.Chrome()

browser.get("http://www.baidu.com")
print(browser.page_source)
browser.close()
相關文章
相關標籤/搜索