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 da1a2e3..090ee17 100644 --- a/app/test/test_add_word.py +++ b/app/test/test_add_word.py @@ -57,7 +57,7 @@ def test_add_word(): if elem.get_attribute('name') == 'marked': elem.click() - elem = driver.find_element_by_xpath('//form[1]/input[1]') # 找到加入我的生词簿按钮 + elem = driver.find_element_by_id('add-to-new-word-book-btn') # 找到加入我的生词簿按钮 elem.click() elems = driver.find_elements_by_xpath("//p[@class='new-word']") |