Browser::reload
Jump to navigation
Jump to search
Reloads current page.
Syntax
browser.reload(ignoreCache);
Required Arguments
- ignoreCache: true to ignore cache
Example
let browser = mp.browsers.at(0);
if(browser)
{
browser.reload(false);
}