You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've encountered a webpage that contains a form with the following field:
<input id="searchText" name="" type="text" />
It turns out that build_query method actually builds the query &= out of that field, whereas browsers actually do NOT submit anything for that particular field. Web servers seem to silently ignore such invalid field, but our test framework craps out.
Solution: fields that have blank name should be ignored altogether.
The text was updated successfully, but these errors were encountered:
I've encountered a webpage that contains a form with the following field:
<input id="searchText" name="" type="text" />
It turns out that
build_query
method actually builds the query&=
out of that field, whereas browsers actually do NOT submit anything for that particular field. Web servers seem to silently ignore such invalid field, but our test framework craps out.Solution: fields that have blank name should be ignored altogether.
The text was updated successfully, but these errors were encountered: