Katalon не может отправить запрос
Когда я отправляю запрос, он всегда возвращает код состояния 200, но ответ направлен прямо на страницу входа, а не на значение моего запроса.
Вот мой ручной сценарий:
String mycookie = GlobalVariable.myToken
String mycsrf = GlobalVariable.mycsrf
String callfullurl = server+thepathURR+param
String authHeader = ""
TestObjectProperty header1 = new TestObjectProperty("Cookie", ConditionType.EQUALS, mycookie)
TestObjectProperty header2 = new TestObjectProperty("Content-Type", ConditionType.EQUALS, "application/json")
TestObjectProperty header3 = new TestObjectProperty("Accept", ConditionType.EQUALS, "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9")
ArrayList defaultHeaders = Arrays.asList(header1, header2, header3)
RequestObject ro = new RequestObject()
ro.setRestUrl(callfullurl)
ro.setFollowRedirects(true)
ro.setHttpHeaderProperties(defaultHeaders)
ro.setRestRequestMethod(method)
def respObj = WS.sendRequest(ro)
'Get the response of requested Ajax'
String response = respObj.getResponseText()
'Get the response status'
def chkcode = respObj.getStatusCode()
ht tps:https://stackru.com/images/553eef3552a39c79de32f69cb759796a5388fc3a.png
ht tps:https://stackru.com/images/f8e9ae017b7d10b5990517a77d47200fba8f4c00.png