ssah8 Posted October 30, 2016 Posted October 30, 2016 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?
jguinch Posted October 30, 2016 Posted October 30, 2016 #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 Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF
ssah8 Posted October 30, 2016 Author Posted October 30, 2016 I compared it to the normal browser. Unfortunately, there is no speed change.
PACaleala Posted November 1, 2016 Posted November 1, 2016 IE will start as fast as the computer allows (" without all the css and stuff. ") Run('"C:\Program Files\Internet Explorer\IEXPLORE.EXE" -nohome')
junkew Posted November 2, 2016 Posted November 2, 2016 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 thathttps://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 FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now