Jump to content

Open Browser Faster


ssah8
 Share

Recommended Posts

Hello

Is it possible to open a browser in Autoit, but without all the css and stuff. When you have bad internet connection, chrome opens the same website but without css and stuff. Is this possible in autoit to make browser actions faster?

Link to comment
Share on other sites

#include <IE.au3>


OnAutoItExitRegister("_EnableIEStyleSheets")

_DisableIEStyleSheets()
Local $oIE = _IECreate("about:blank")
_IENavigate($oIE, "http://www.autoitscript.com/forum")


Func _EnableIEStyleSheets()
    RegWrite("HKCU\SOFTWARE\Microsoft\Internet Explorer\Main", "Use StyleSheets", "REG_SZ", "Yes" )
EndFunc

Func _DisableIEStyleSheets()
    RegWrite("HKCU\SOFTWARE\Microsoft\Internet Explorer\Main", "Use StyleSheets", "REG_SZ", "No" )
EndFunc

 

Link to comment
Share on other sites

whats the goal of beeing faster? without a goal its hard to answer your question

sounds like you need something like headless browser. you can google for that
https://en.wikipedia.org/wiki/Headless_browser

or text based browser?

https://en.wikipedia.org/wiki/Lynx_(web_browser)

or central compression

http://www.opera.com/turbo

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...