Behave + Selenium(Python) ------ (第四篇)

來源:互聯網
上載者:User

標籤: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) ------ (第四篇)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.