browser title

Allows you to change the title of the browser tab.


Example

Running this code will change the browser title of "https://www.google.com/" to "Changed Title".

The title bar is changed to "Changed Title".

plugin command("Browser Automation.dll", "browser connect", "Chrome", "30,0,30,10", "True", "False", "True")
plugin command("Browser Automation.dll", "browser navigate", "https://www.google.com/")
plugin command("Browser Automation.dll", "browser title", "Changed Title", "False")

Was this helpful?