From 5d8dd88e781f4297c9f344bc99d290fa2cf8b6e9 Mon Sep 17 00:00:00 2001 From: Hui Lan Date: Thu, 11 Feb 2021 20:23:05 +0800 Subject: app/test/test_add_word.py and app/main.py: give the button an ID. --- app/test/test_add_word.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/test/test_add_word.py') 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']") -- cgit v1.2.1