diff options
Diffstat (limited to 'app/test/test_add_word.py')
-rw-r--r-- | app/test/test_add_word.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/test/test_add_word.py b/app/test/test_add_word.py index 4fb38bc..01d867f 100644 --- a/app/test/test_add_word.py +++ b/app/test/test_add_word.py @@ -61,7 +61,7 @@ def test_add_word(): elem = driver.find_element_by_xpath('//form[1]/input[1]') # 找到加入我的生词簿按钮 elem.click() - elems = driver.find_elements_by_xpath("//p[@id='new-word']") + elems = driver.find_elements_by_xpath("//p[@class='new-word']") elems[0].location_once_scrolled_into_view driver.save_screenshot('./app/test/test_add_word_pic3.png') |