자동화 테스트 모델 - 모듈 화 와 파라미터 화

8010 단어 Selenium
속뜻
함수 나 방법 을 만 들 때 파 라 메 터 를 설정 하여 서로 다른 매개 변수 에 따라 해당 하 는 작업 을 수행 할 수 있 도록 합 니 다.
실례
메 일 박스 테스트 스 크 립 트 test 만 들 기mail.py:
	from time import sleep
	from selenium import webdriver
	
	dri = webdriver.Chrome()
	dri.get("http://mail.163.com")
	
	#   
	sleep(2)
	dri.find_element_by_id("switchAccountLogin").click()
	login_frame = dri.find_element_by_css_selector(
	    'iframe[id^="x-URS-iframe"]')  #       
	dri.switch_to.frame(login_frame)  #     
	# dri.find_element_by_name("email").clear()
	dri.find_element_by_name("email").send_keys("username")
	# dri.find_element_by_name("password").clear()
	dri.find_element_by_name("password").send_keys("password")
	dri.find_element_by_id("dologin").click()
	sleep(5)
	
	#   
	dri.find_elements_by_link_text("  ").click()
	
	dri.quit()

메 일 박스 의 자동화 테스트 항목 을 실현 하려 면 모든 사례 에 로그 인 과 종료 작업 이 필요 합 니 다. 로그 인 과 종료 작업 을 저장 하기 위해 새로운 module. py 를 만 들 수 있 습 니 다.
	class Mail:
	
	    def __init__(self, driver):
	        self.driver = driver
	        
	    def login(self):
	        self.driver.find_element_by_id("switchAccountLogin").click()
	        login_frame = self.driver.find_element_by_css_selector(
	            'iframe[id^="x-URS-iframe"]')  #       
	        self.driver.switch_to.frame(login_frame)  #     
	        self.driver.find_element_by_name("email").send_keys("username")
	        self.driver.find_element_by_name("password").send_keys("password")
	        self.driver.find_element_by_id("dologin").click()
	        
	    def logout(self):
	        self.driver.find_element_by_link_text("  ").click()

수정 testmail. py, Mail 류 를 호출 하 는 방법.
	mail = Mail(dri)
	mail.login()
	mail.logout()

수정 되 지 않 은 전 기능 과 일치 합 니 다.로그 인 기능 을 테스트 하 는 것 이 필요 하 다 면 테스트 데이터 (계 정 비밀번호) 를 매개 변수 화하 고 Mail 을 호출 하 는 방법 을 사용 하면 됩 니 다.

좋은 웹페이지 즐겨찾기