一.首先观察页面初始化数据是否加载正确
步骤: 1.先确定页面内容 2.再确定内容所对应的数据库表 3.编写SQL语句 4.编写测试用例,并执行(是否与页面加载数据一致)二.功能点考虑:
输入:可见输入和不可见输入 处理:正常+异常处理 输出: 可见输出--->前台、后台 不可见输出--->数据库案例: 以iwebshop为例 ,具体如下 (一)初始化页面测试 1.确定页面内容及对应的数据库2.编写对应的数据库
首页内容分析 | SQL |
商品分类 | select * from iwebshop_category where parent_id=0 and visibility=1 order by sort limit 5 |
服饰鞋帽 | select * from iwebshop_category where parent_id=57 and visibility=1 order by id desc |
家居、家装 | select * from iwebshop_category where parent_id=68 and visibility=1 order by id asc |
热门数据 |