標籤:style blog http io ar color os 使用 sp
最近比較忙, behave的項目結束之後,又加入了一新項目,一開始說要用C#語言來寫selenium自動化,後來跟客戶確定使用QTP來寫。 個人還是比較喜歡用C#語言和selenium架構的。因為qtp,市場上用的不多,發展前途受限制,再加上vbscript語言現在基本上沒有人使用了。 OK,開始進入主題:
今天我們開始講講behave的厲害的地方。
Tag檔案的使用
在behave裡面,如何來控制哪些case需要run,哪些case不需要run,這個時候就用Tag來控制。好了,接下來我用Tag檔案來實現同一個指令碼可以用firefox,chrome和ie三種不同的瀏覽器來測試。
一、在feature檔案裡面建立example04檔案,然後建立environment.py檔案,代碼如下:
from selenium import webdriver
import sys
def before_all(context):
reload(sys)
sys.setdefaultencoding(‘utf-8‘)
context.baidu_url = ‘http://www.baidu.com‘
def before_tag(context, tag):
if tag.startswith("browser."):
browser_type = tag.replace("browser.", "", 1)
if browser_type == "firefox":
context.driver = webdriver.Firefox()
elif browser_type == "chrome":
context.driver = webdriver.Chrome()
else:
context.driver = webdriver.Ie()
def after_tag(context, tag):
context.driver.close()
二、在example04檔案夾裡面建立example04.feature檔案,代碼如下:
# This Python file uses the following encoding: utf-8
#../feature/example04/steps/example04.py
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions
from selenium.webdriver.common.by import By
@Given(‘Access baidu website‘)
def step_impl(context):
context.driver.get(context.baidu_url)
@when(‘Input behave characters‘)
def step_impl(context):
context.ele_input = context.driver.find_element_by_xpath("//input[@id = ‘kw‘]")
context.ele_input.send_keys("behave")
context.ele_btn = context.driver.find_element_by_xpath("//input[@id = ‘su‘]")
context.ele_btn.click()
@Then(‘There are more than 1 results displaying‘)
def step_impl(context):
context.sign_link = WebDriverWait(context.driver, 60).until(
expected_conditions.presence_of_element_located((By.CSS_SELECTOR, "div.nums")))
context.ele_results = context.driver.find_element_by_css_selector("div.nums")
context.expected_results = ‘相關結果‘
if context.expected_results in context.ele_results.text:
assert True
else:
assert False
三、在example04檔案夾裡面建立steps檔案夾,然後在steps檔案夾裡面建立example04.py, 代碼如下:
Feature:Search behave results in baidu
@browser.firefox
Scenario: Search behave results in baidu with firefox browser
Given Access baidu website
When Input behave characters
Then There are more than 1 results displaying
@browser.chrome
Scenario: Search behave results in baidu with chrome browser
Given Access baidu website
When Input behave characters
Then There are more than 1 results displaying
@browser.ie
Scenario: Search behave results in baidu with ie browser
Given Access baidu website
When Input behave characters
Then There are more than 1 results displaying
四、開啟cmd,cd到相應的路徑,然後輸入behave,你會發現代碼分別會在firefox, chrome和IE中分別執行。 但是如果你想要只在firefox中執行,你可以使用命令 behave --tags=browser.firefox,然後你會發現僅僅開啟了firefox。
擴充: 通過tag, 你可以給一個scenario加上N個tag, 每個tag之間用空格隔開就ok, 這樣的的話你也可以給scenario加上regression使其變成迴歸測試的。
除了給scenario加上tag,你還可以給feature加上tag. behave的指令碼都是會把所有的feature檔案放在同一個feature檔案夾目錄下面,然後會在steps裡面放所有feature檔案對應的py檔案。
然後最終的基本目錄是這樣子的。
Behave + Selenium(Python) ------ (第四篇)