Example of filtering only that results which have request method as GET or POST and special word is not in url:
(http.request.method == GET or http.request.method == POST) and !http.request.uri contains "css"
Android Blog is the place where I put code possible to be reused in near future.
Example of filtering only that results which have request method as GET or POST and special word is not in url:
(http.request.method == GET or http.request.method == POST) and !http.request.uri contains "css"