From d2eae8fad9069c61ba7d698c9fc635938a6bcc12 Mon Sep 17 00:00:00 2001 From: Hui Lan Date: Wed, 10 Feb 2021 19:58:13 +0800 Subject: app/test/test_add_word_and_essay_does_not_change.py: click Next should give us another essay (in most cases). --- app/test/test_add_word_and_essay_does_not_change.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/test/test_add_word_and_essay_does_not_change.py b/app/test/test_add_word_and_essay_does_not_change.py index 5794dec..caca78d 100644 --- a/app/test/test_add_word_and_essay_does_not_change.py +++ b/app/test/test_add_word_and_essay_does_not_change.py @@ -64,15 +64,15 @@ def test_add_word_and_essay_does_not_change(): assert current_essay_content == essay_content - # click the Next button + # click the Next button. Now the essay should change. elem = driver.find_element_by_xpath('//form[1]//input[1]') # 找到get所有词频按钮 elem.click() # compare again - driver.save_screenshot('./app/test/test_add_word_and_essay_does_not_change_pic2.png') + driver.save_screenshot('./app/test/test_add_word_and_essay_does_not_change_pic2.png') elem = driver.find_element_by_id('text-content') next_essay_content = elem.text - + assert current_essay_content != next_essay_content - + driver.quit() -- cgit v1.2.1