摘要:
#coding:utf-8 from selenium import selenium import unittest import time import HTMLTestRunner class Test_Class(unittest.TestCase): def setUp(self): self.verificationErr... 阅读全文
摘要:
class TestCase: def run(self, result=None): if result is None: result=self.defaultTestResult() result.startTest(self) t... 阅读全文
摘要:
#-*-coding=utf-8from selenium import webdriverimport timedriver=webdriver.Firefox()#浏览器安装的路径是默认地址driver.get("http://www.baidu.com")#输入URL地址time.sleep(... 阅读全文
摘要:
# -*- coding: UTF-8 -*-from selenium import webdriverimport timedriver=webdriver.Firefox()#浏览器安装的路径是默认地址driver.get("http://www.baidu.com")#输入URL地址time... 阅读全文
摘要:
# coding = utf-8from selenium import webdriver 导入import time #调入time函数driver = webdriver.Firefox()#浏览器安装的路径是默认地址driver.get("http://www.baidu.com")#输... 阅读全文
摘要:
open(file_name, access_mode='r',buffering=-1) r+,w+,a+ 打开read()读取 如果没有给定size参数(默认-1)或者size为负,文件被读取到末尾readline()读取打开文件的一行readlines()读取所有的行让后把他们作为一个字... 阅读全文
摘要:
#!/usr/bin/env pythondef MaxFactor(num): count= num/2 while count >1: if num%count==0: print 'larget factor of %d is... 阅读全文
摘要:
下面是自己总结的一些。1.判断是否有注入;and 1=1;and 1=22.初步判断是否是mssql;and user>03.判断数据库系统;and (select count(*) from sysobjects)>0 mssql;and (select count(*) from msysobj... 阅读全文
摘要:
功能测试1.1 链接测试链接是Web应用系统的一个主要特征,它是在页面之间切换和指导用户去一些不知道地址的页面的主要手段。链接测试可分为三个方面。 1)测试所有链接是否按指示的那样确实链接到了该链接的页面; 2)测试所链接的页面是否存在; 3)保证Web应用系统上没有孤立的页面,所谓孤立页面是... 阅读全文
摘要:
copy(),>>> help(copy) import copy x = copy.copy(y) # make a shallow copy of y浅拷贝 x = copy.deepcopy(y) # make a dee... 阅读全文