diff --git a/changedetectionio/tests/visualselector/test_fetch_data.py b/changedetectionio/tests/visualselector/test_fetch_data.py index a24b5e9d8..67379f908 100644 --- a/changedetectionio/tests/visualselector/test_fetch_data.py +++ b/changedetectionio/tests/visualselector/test_fetch_data.py @@ -91,12 +91,13 @@ def test_basic_browserstep(client, live_server): 'browser_steps-0-operation': 'Goto site', 'browser_steps-1-operation': 'Click element', 'browser_steps-1-selector': 'button[name=test-button]', - 'browser_steps-1-value': '' + 'browser_steps-1-optional_value': '' }, follow_redirects=True ) assert b"unpaused" in res.data wait_for_all_checks(client) + uuid = extract_UUID_from_client(client) # Check HTML conversion detected and workd @@ -107,8 +108,6 @@ def test_basic_browserstep(client, live_server): assert b"This text should be removed" not in res.data assert b"I smell JavaScript because the button was pressed" in res.data - - # now test for 404 errors res = client.post( url_for("edit_page", uuid=uuid, unpause_on_save=1), @@ -120,7 +119,7 @@ def test_basic_browserstep(client, live_server): 'browser_steps-0-operation': 'Goto site', 'browser_steps-1-operation': 'Click element', 'browser_steps-1-selector': 'button[name=test-button]', - 'browser_steps-1-value': '' + 'browser_steps-1-optional_value': '' }, follow_redirects=True )