目前暂时没有考虑到 cookie 的信息,第一版 实现功能为主
好的,我就是开始写的过程中没有考虑那么多,侯秀优化中可以修改
用起来方便。顺手,看个人习惯。我一般习惯封装后用
可以,不错。感谢楼主分享,好好研究研究。
我之前遇到一次,我把 try except 当时去掉。然后试过貌似行了,好久不弄了,
获取嵌套字典中的 value,你这个目前只是针对的字典的值是数值类型的吧,
allGuests = {'Alice': {'apples': 5, 'pretzels': '12'},
'Bob': {'ham sandwiches': 3, 'apple': 2},
'Carol': {'cups': 3, 'apple pies': 1}}
def totalBrought(guests, item):
numBrought = 0
for k, v in guests.items():
numBrought = numBrought + v.get(item, 0)
return numBrought
print('Number of things being brought:')
print(' - Apples ' + str(totalBrought(allGuests, 'pretzels')))
报错
Traceback (most recent call last):
File "C:/Users/Administrator/Desktop/laoshi/111.py", line 18, in <module>
print(' - Apples ' + str(totalBrought(allGuests, 'pretzels')))
File "C:/Users/Administrator/Desktop/laoshi/111.py", line 15, in totalBrought
numBrought = numBrought + v.get(item, 0)
TypeError: unsupported operand type(s) for +: 'int' and 'str'
代码不具有通用性。
我现在在创业公司,不怎么忙,业余我就开始用公司 app 去做自动化,虽然有坑,会累,自己坚持吧
看你说的你了解测试,你对你自己的网站都没有进行必要的测试。
明白你的意思,两者结合才能更高效,也提高了测试的覆盖率。
明白了,感谢指点
ok。感谢
可是我去找很少找到的,现在要求都老高了。
恩是的,目前我在想转到 app 测试,感觉需要学的东西很多
接口也可以搞啊,我用 python 写脚本测试过简单的接口,慢慢深入吧,只是突然自己感觉方向不对还是自己能力不够
看看效果
zan