How Would I Program My Bot To Clear Away Placeholder Writing? January 30, 2024 Post a Comment I'm making a bot to log in to bing.com using plain old windows notepad, and so far, I have this: set wb = createobject('internetexplorer.application') wb.statusbar = false wb.menubSolution 1: Add this line to hide the hint textwb.document.getElementsByClassName("phholder")(0).style.display = "none"CopyMay I also suggest replacing wscript.sleep(5000) with DoWhiletrueif wb.readystate = 4thenexitdo wscript.sleep(100) LoopCopyWhich should just wait until the page is loaded. Share Post a Comment for "How Would I Program My Bot To Clear Away Placeholder Writing?"
Post a Comment for "How Would I Program My Bot To Clear Away Placeholder Writing?"