Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Selenium Learning: a Test example of Modular driver

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Login module package file: public.py

# coding=utf-8from selenium import webdriverfrom time import sleepclass Login (): # Log in to def user_login (self Driver): driver.find_element_by_id ("loginform-username"). Clear () driver.find_element_by_id ("loginform-username"). Send_keys ("91ctt") driver.find_element_by_id ("loginform-password"). Clear () driver.find_element_by_id ("loginform-password"). Send_keys ("CTT1106648034") driver.find_element_by _ name ("login-button") .submit () # exit def user_logout (self Driver): driver.find_element_by_link_text ("[exit]") .click () sleep (5) driver.quit ()

Test file test22.py

From selenium import webdriverfrom time import sleepfrom public import Logindriver = webdriver.Chrome () # destination address: 51CTO.comurl = "http://home.51cto.com/index?reback=http://9603083.blog.51cto.com/9593083/d-2"driver.get(url)Login().user_login(driver)sleep(2)Login().user_logout(driver)

The Login class is defined in the file public.py, which contains two function methods, the user_login method and the user_logout method

Positive login and exit operations for 51cto.com

The file test22.py is the actual operation of testing the login and exit interface.

Call the user_login method and the user_logout method by introducing the Login class of the module public

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report