I don't want to ignore these forms, I want to use SER matching and form parsing, the thing is that sometimes the forms are very similiar and so SER is filling a GET form when it shouldn't
In that case you simply use the modify submit type instruction and ignore what it has detected
Yes, "maybe" it will work but it is not a solution. What if the wrong url action is chosen? The forms can be completely different, the safest is to ignore all GET... as the 1st task of a given STEP at the beginning, just let SER know "I am not interested in any GET form".
From my understanding modify submit type applies as the last step before the actual submission.
Comments
But I cannot specify the form method like
When a form has method=post its a POST.
So imagine two similiar forms:
<form>...
<form method="post">
I want to match `post`, I don't care about get so:
form method=post
or
form method ignore=get
From my understanding modify submit type applies as the last step before the actual submission.