Update testloader.js

This commit is contained in:
Namhyeon Go 2024-12-27 14:55:46 +09:00 committed by GitHub
parent 5a5526df63
commit a99f1c396f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1006,10 +1006,11 @@ var test_implements = {
// https://catswords-oss.rdbl.io/5719744820/8278298336
"proxy_custom_provider": function() {
var HTTP = require("lib/http");
var APIKEY = require("lib/apikey");
var response = HTTP.create()
.setVariables({
"api_key": "YOUR_API_KEY",
"api_key": APIKEY.getApiKey("scrapeops"),
"render_js": "false",
"residential": "false",
"country": "us",
@ -1029,10 +1030,11 @@ var test_implements = {
// https://catswords-oss.rdbl.io/5719744820/8278298336
"proxy_serp": function() {
var HTTP = require("lib/http");
var APIKEY = require("lib/apikey");
var response = HTTP.create()
.setVariables({
"api_key": "YOUR_API_KEY"
"api_key": APIKEY.getApiKey("searchapi")
})
.setProxy({
"enabled": true,