摘要: 1 # -*- coding:utf-8 -*- 2 3 """ 4 python 实现对象模型 5 创建 bmicalcpage 类 6 """ 7 8 class bmicalcpage(object): 9 def __init__(self, driver):10 self._driver = driver11 self._url = r'F:\电子书\selenium\Selenium Testing Tools Cookbook(中文)\demo\BMICalculator.html'12 self._ti 阅读全文
posted @ 2013-07-18 23:42 Roger| 阅读(516) 评论(0) 推荐(0) 编辑