您的位置:首页 > 编程语言 > Python开发

Selenium RC For Python:教程2

2010-05-22 15:25 253 查看
为了全面测试一个Web系统,我们需要与系统UI相交互并做出相应的断言。

最常用的交互是通过selenium.py中以下方法来实现的:

open(url): Opens an URL in the test frame. This accepts both relative and absolute URLs.
click(locator): Clicks on a link, button, checkbox or radio button. If the click action causes a new page to load (like a link usually does), call waitForPageToLoad.
type(locator, value): Sets the value of an input field, as though you typed it in. Can also be used to set the value of combo boxes, check boxes, etc. In these cases, value should be the value of the option selected, not the visible text.
select(selectLocator,optionLocator): Select an option from a drop-down using an option locator.
check(locator): Check a toggle-button (checkbox/radio)
wait_for_page_to_load(timeout): Waits for a new page to load.
下面是一些从页面中获取信息的方法:

get_title(): Gets the title of the current page.
get_text(locator): Gets the text of an element. This works for any element that contains text. This command uses either the textContent (Mozilla-like browsers) or the innerText (IE-like browsers) of the element, which is the rendered text shown to the user.
get_value(locator): Gets the (whitespace-trimmed) value of an input field (or anything else with a value parameter). For checkbox/radio elements, the value will be "on" or "off" depending on whether the element is checked or not.
is_editable(locator): Determines whether the specified input element is editable, ie hasn't been disabled. This method will fail if the specified element isn't an input element.
is_element_present(locator): Verifies that the specified element is somewhere on the page.
get_selected_label(selectLocator): Gets option label (visible text) for selected option in the specified select element.
get_selected_value(selectLocator): Gets option value (value attribute) for selected option in the specified select element.
is_something_selected(selectLocator): Determines whether some option in a drop-down menu is selected.
is_checked(locator): Gets whether a toggle-button (checkbox/radio) is checked. Fails if the specified element doesn't exist or isn't a toggle-button.
get_alert(): Retrieves the message of a JavaScript alert generated during the previous action, or fail if there were no alerts.Getting an alert has the same effect as manually clicking OK. If an alert is generated but you do not consume it with getAlert, the next Selenium action will fail. Under Selenium, JavaScript alerts will NOT pop up a visible alert dialog.
如上一篇文章所写,大部分的测试类的结构是类似的:

from..import... or import..
class的定义
常用变量的定义,引用这些变量要用self.常量的方式

setUp()和tearDown的定义
测试方法的定义,这是测试的主要内容
使用unittest的main方法运行测试
代码例子如下:

代码#! /usr/bin/env python
#coding=utf-8
from selenium import selenium
import unittest

class TestPageForSeleniumRemoteControl(unittest.TestCase):
MAX_WAIT_IN_MS = 60000
BASE_URL = "http://www.bitmotif.com"
TEST_PAGE_URL = BASE_URL + "/test-page-for-selenium-remote-control"
TEST_PAGE_TITLE = u"Test Page For Selenium Remote Control « Bit Motif"

def setUp(self):
self.verificationErrors = []
self.selenium = selenium("localhost", 4444, "*firefox3 E:/Program Files/Mozilla Firefox/firefox.exe", self.BASE_URL)
self.selenium.start()

def tearDown(self):
self.selenium.stop()

def test_function(self):
passs

if __name__ == '__main__':
unittest.main()
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: