Browser¶ Using the browser method you can open a webpage using your default browser. Browse¶ You can access a URL using your default browser. PythonJavaJavascriptTypescript # Opens the default browser on the BotCity website. bot.browse("https://botcity.dev") // Opens the default browser on the BotCity website. browse("https://botcity.dev"); // Opens the default browser on the BotCity website. const desktopBot = new DesktopBot() await desktopBot.browser('https://botcity.dev') // Opens the default browser on the BotCity website. const desktopBot: DesktopBot = new DesktopBot() await desktopBot.browser('https://botcity.dev') Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.