I’ve scripted it to append a string to the URL and when I keep issuing the request it keeps appending over and over again
In OnBeforeRequest function
if (oSession.uriContains("www.youtube.com/results?search_query=")) {
var sText = "+test1+test2+test3";
oSession.fullUrl = oSession.fullUrl + sText;
}
visual info: https://i.stack.imgur.com/JT4bF.png
How can I fix this ?