I have an asynchronous call to an API which takes a while to process and is cut off by the 5000ms timeout.
This function is invoked by executeScript.
Does anyone know how/where to alter that timeout to make it bigger?
The code:
async function callApi(keyword) {
const response = await fetch (api_url);
const data = await response.json();
return data;
}
return callApi(${keyword});