frdel
Browser-use prototype
ef24a72
function click(selector){
{
const element = document.querySelector(selector);
if (element) {
element.click();
return true;
}
return false;
}
}