python+selenium+unittest+pageobject学习记录(一)
2021-07-10 06:06
标签:变量 driver 搭建 int dict bsp port python基础 引用 学习selenium已经一个月了,简单概括一下学习的步骤,方便以后回忆。 一. 自动化测试的一些概念 1.分层的自动化测试:unit-->service-->UI 2.什么样的项目时候自动化测试:软件需求变动不频繁;项目周期较长;自动化测试脚本可复用 3.如何学习UI自动化测试:编程语言;Selenium API;单元测试框架 二. 测试环境搭建 1.安装python:安装python,配置环境变量 2.安装Selenium:pip install selenium 3.浏览器驱动:http://www.testclass.net/selenium_python/selenium3-browser-driver/ 三. Python基础 1.输出:print 2.引号注释:# ; ‘’‘ ’‘’ ;""" """ 3.if语句: if ...: 4.for语句:for ...: 5.列表:list = [1,2,3] 6.元组:tup = (1,2,3) 7.字典:dict = {1,2,3} 8.函数:def add(a,b): 9.类和方法:def A(object): def add(self,a,b): 10.引用模块:import 11.异常:try: ... except Exception as msg: ... python+selenium+unittest+pageobject学习记录(一) 标签:变量 driver 搭建 int dict bsp port python基础 引用 原文地址:https://www.cnblogs.com/Nodesire/p/9563055.html
文章标题:python+selenium+unittest+pageobject学习记录(一)
文章链接:http://soscw.com/index.php/essay/103104.html