THE FORUM IS IN READ-ONLY MODE
This forum is in read-only mode. The new forum is live at https://discourse.openbullet.dev and registrations are open!
Save in Txt file result
-
hey
how to make OB save result in txt file?
-
Below is an example how to save capture or parse value on file text, OB has several opcion it will depend what you want to achieve
REQUEST GET "https://mywebsite.com" HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" HEADER "Pragma: no-cache" HEADER "Accept: */*" #PARSE_1 PARSE "<SOURCE>" LR "" "" -> VAR "MyCapture" #PARSE_2 PARSE "<SOURCE>" LR "" "" -> VAR "MyCapture2" UTILITY File "MyFileName.txt" AppendLines "<MyCapture1>\\n<MyCapture2>" -> VAR "SaveOnFile" ```
-
thanx i did it My dear
-