Получить URL. И я хочу управлять этим URL из моего P C с помощью консоли.
например
url = get('https://test.test');
//Suppose the JS at this URL has testValue set to 2.
A = url.console("testValue");
//And assume that this URL has a getAdd() function.
B = url.console("getAdd(1, 2)");
print A;
print B;
-> output : "2";
-> output : "3";
Есть ли такой способ?