hi i can not hide a class on a web view why? can someone hel me?
i used this on a "evaluate javascript "
function hide() { document.getElementById(‘Classnamehere’).style.visibility = false };
but still did not work pls help. i would really appreciate if you also send me some more screenshot to understand it easily but it is not necessary.
getElementsByClassName returns the result as an array of all child elements which have all of the given class name.
You need to select the child by specifying the index. (I did it in the above code)