GetBrowserSource: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Link to the Romanian translation of this page added.) |
||
(7 intermediate revisions by 5 users not shown) | |||
Line 7: | Line 7: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
bool getBrowserSource ( browser webBrowser, function callback ) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[Element/Browser|browser]]:getSource}} | |||
===Required arguments=== | |||
*'''webBrowser:''' The browser element you want to get the source of | |||
*'''callback:''' a callback function with syntax as described below | |||
====Callback syntax==== | ====Callback syntax==== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function ( string code ) | function ( string code ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Returns== | ==Returns== | ||
Line 20: | Line 23: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua">local browser = createBrowser( | <syntaxhighlight lang="lua"> | ||
local browser = createBrowser(1024,1024,false,false) --Create Browser | |||
addEventHandler("onClientBrowserCreated",browser,function() | |||
loadBrowserURL(browser,"http://www.youtube.com") --Load URL | |||
-- | |||
end) | end) | ||
addEventHandler("onClientBrowserDocumentReady",browser,function(url) | |||
local rnt = getBrowserSource(browser,function(code) --Get Browser Source and Call Function | |||
outputChatBox(code) --Output Code | |||
end) | |||
if rnt then | |||
outputChatBox("Browser Source Got",0,255,0) | |||
else | |||
outputChatBox("Failed To Get Browser Source",255,0,0) | |||
end | |||
end) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{CEF_functions}} | {{CEF_functions}} | ||
[[hu:getBrowserSource]] | |||
[[RO:getBrowserSource]] |
Latest revision as of 12:02, 8 April 2020
This function can be used to retrieve the source code of a website (asynchronously). The size of the source code is limited to 2 MiB (remaining bytes are cut).
Syntax
bool getBrowserSource ( browser webBrowser, function callback )
OOP Syntax Help! I don't understand this!
- Method: browser:getSource(...)
Required arguments
- webBrowser: The browser element you want to get the source of
- callback: a callback function with syntax as described below
Callback syntax
function ( string code )
Returns
Returns true if valid arguments have been passed, false otherwise.
Example
local browser = createBrowser(1024,1024,false,false) --Create Browser addEventHandler("onClientBrowserCreated",browser,function() loadBrowserURL(browser,"http://www.youtube.com") --Load URL end) addEventHandler("onClientBrowserDocumentReady",browser,function(url) local rnt = getBrowserSource(browser,function(code) --Get Browser Source and Call Function outputChatBox(code) --Output Code end) if rnt then outputChatBox("Browser Source Got",0,255,0) else outputChatBox("Failed To Get Browser Source",255,0,0) end end)
See Also
- canBrowserNavigateBack
- canBrowserNavigateForward
- createBrowser
- executeBrowserJavascript
- focusBrowser
- getBrowserProperty
- getBrowserSettings
- getBrowserSource
- getBrowserTitle
- getBrowserURL
- injectBrowserMouseDown
- injectBrowserMouseMove
- injectBrowserMouseUp
- injectBrowserMouseWheel
- isBrowserDomainBlocked
- isBrowserFocused
- isBrowserLoading
- isBrowserRenderingPaused
- loadBrowserURL
- navigateBrowserBack
- navigateBrowserForward
- reloadBrowserPage
- requestBrowserDomains
- resizeBrowser
- setBrowserAjaxHandler
- setBrowserProperty
- setBrowserRenderingPaused
- setBrowserVolume
- toggleBrowserDevTools