Bug545-HuangHuiLing #122
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "Bug545-HuangHuiLing"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
WIP:Bug545-HuangHuiLingto Bug545-HuangHuiLing@ -1,6 +1,5 @@
// initialize from localStorage
let isRead = localStorage.getItem('readChecked') !== 'false'; // default to true
@huanghuiling
删除 localStorage 可能会导致 Tang Xinyuan 组对 Bug 544 修复失效。
请验证一下,运行一下测试脚本 app/test/test_bug544_tangxinyuan.py
老师,运行后显示测试通过
我将它添加回去后,再次测试也是通过的
@ -0,0 +9,4 @@
from helper import signup
def has_punctuation(s):
@huanghuiling
函数 has_punctuation 没有被用到,请删除。
@ -0,0 +26,4 @@
# 假设我们想要选择从第10个字符开始的5个字符
actions.click()
actions.perform()
time.sleep(5)
@huanghuiling
time.sleep 可以调到 1 秒吗?
@ -0,0 +62,4 @@
assert selected_words != "","选中单词被放置框中"
#再次选取
select(driver)
time.sleep(6)
@huanghuiling
time.sleep 可以调到 1 秒吗?
可以的
@huanghuiling
修改后测试失败了。
为什么要删除
assert selected_words != "","选中单词被放置框中"
?因为用鼠标模拟去选择单词的时候,我为了保证选择的单词是一样的,用了双击去选择,但是会选择到空格,所以把这个删掉了。
老师,因为为了保证选择的单词一样,我是用标题测试的,我发现如果选择标题的首字母是大写的单词是有问题的,所以会测试错误,我去修改一下。
蓝老师,不知道为什么,我用未经我修改的代码去测试dingzeyu小组,也是显示的测试失败
@huanghuiling
APPROVED