@Metaferssance My usage is consistently stable on any number of servers, meaning I use Server 1 with 100 threads. When I run a second server, it distributes the load between the two servers so that the total is 200. Also, I have an automatic problem from BAS, as the maximum running limit I have is 100 threads on one server or more; I will only get 100 threads. Is this because I am using the same key for fingerprints? Do I need a separate key for each 100 threads on two servers, or what?
Need help with JavaScript block
-
How to click button in browser using block "JavaScript" ??????
Code of target button:
<input type="button" class="link-button" onclick="goToLinkByLeafCode(this, 'objectHrefTerm')" value="/ View" id="1199" name="1200">i wrote such code in block "JavaScript":
document.getElementsById('1199').click();or
$("#1199).click(); (using JQuery)
or
document.getElementsByClassName('link-button')[1].click(); (trying to click anything)
Nothing works.
What is wrong with my code?
-
@sergerdn said in Need help with JavaScript block:
var button = document.getElementById('1199');
if (button) {
button.click();
} else {
console.error('Button with ID 1199 not found.');
}Thank you. But it doesn't work too. Seems issue is not in JS code but in BAS.