2 <!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.0 Transitional//EN">
3 <html><head><title>Python: module telemetry.core.extension_page
</title>
4 </head><body bgcolor=
"#f0f0f8">
6 <table width=
"100%" cellspacing=
0 cellpadding=
2 border=
0 summary=
"heading">
8 <td valign=bottom
> <br>
9 <font color=
"#ffffff" face=
"helvetica, arial"> <br><big><big><strong><a href=
"telemetry.html"><font color=
"#ffffff">telemetry
</font></a>.
<a href=
"telemetry.core.html"><font color=
"#ffffff">core
</font></a>.extension_page
</strong></big></big></font></td
10 ><td align=right valign=bottom
11 ><font color=
"#ffffff" face=
"helvetica, arial"><a href=
".">index
</a><br><a href=
"../telemetry/core/extension_page.py">telemetry/core/extension_page.py
</a></font></td></tr></table>
12 <p><tt>#
Copyright
(c)
2012 The
Chromium
Authors.
All
rights
reserved.
<br>
13 #
Use
of
this
source
code
is
governed
by
a
BSD-style
license
that
can
be
<br>
14 #
found
in
the
LICENSE
file.
</tt></p>
16 <table width=
"100%" cellspacing=
0 cellpadding=
2 border=
0 summary=
"section">
17 <tr bgcolor=
"#aa55cc">
18 <td colspan=
3 valign=bottom
> <br>
19 <font color=
"#ffffff" face=
"helvetica, arial"><big><strong>Modules
</strong></big></font></td></tr>
21 <tr><td bgcolor=
"#aa55cc"><tt> </tt></td><td> </td>
22 <td width=
"100%"><table width=
"100%" summary=
"list"><tr><td width=
"25%" valign=top
><a href=
"re.html">re
</a><br>
23 </td><td width=
"25%" valign=top
><a href=
"telemetry.core.web_contents.html">telemetry.core.web_contents
</a><br>
24 </td><td width=
"25%" valign=top
></td><td width=
"25%" valign=top
></td></tr></table></td></tr></table><p>
25 <table width=
"100%" cellspacing=
0 cellpadding=
2 border=
0 summary=
"section">
26 <tr bgcolor=
"#ee77aa">
27 <td colspan=
3 valign=bottom
> <br>
28 <font color=
"#ffffff" face=
"helvetica, arial"><big><strong>Classes
</strong></big></font></td></tr>
30 <tr><td bgcolor=
"#ee77aa"><tt> </tt></td><td> </td>
32 <dt><font face=
"helvetica, arial"><a href=
"telemetry.core.web_contents.html#WebContents">telemetry.core.web_contents.WebContents
</a>(
<a href=
"__builtin__.html#object">__builtin__.object
</a>)
35 <dt><font face=
"helvetica, arial"><a href=
"telemetry.core.extension_page.html#ExtensionPage">ExtensionPage
</a>
40 <table width=
"100%" cellspacing=
0 cellpadding=
2 border=
0 summary=
"section">
41 <tr bgcolor=
"#ffc8d8">
42 <td colspan=
3 valign=bottom
> <br>
43 <font color=
"#000000" face=
"helvetica, arial"><a name=
"ExtensionPage">class
<strong>ExtensionPage
</strong></a>(
<a href=
"telemetry.core.web_contents.html#WebContents">telemetry.core.web_contents.WebContents
</a>)
</font></td></tr>
45 <tr bgcolor=
"#ffc8d8"><td rowspan=
2><tt> </tt></td>
46 <td colspan=
2><tt>Represents
an
extension
page
in
the
browser
<br> </tt></td></tr>
48 <td width=
"100%"><dl><dt>Method resolution order:
</dt>
49 <dd><a href=
"telemetry.core.extension_page.html#ExtensionPage">ExtensionPage
</a></dd>
50 <dd><a href=
"telemetry.core.web_contents.html#WebContents">telemetry.core.web_contents.WebContents
</a></dd>
51 <dd><a href=
"__builtin__.html#object">__builtin__.object
</a></dd>
54 Methods defined here:
<br>
55 <dl><dt><a name=
"ExtensionPage-Reload"><strong>Reload
</strong></a>(self)
</dt><dd><tt>Reloading
an
extension
page
is
used
as
a
workaround
for
an
extension
<br>
56 binding
bug
for
old
versions
of
Chrome
(crbug.com/
263162).
After
Navigate
<br>
57 returns,
we
are
guaranteed
that
the
inspected
page
is
in
the
correct
state.
</tt></dd></dl>
59 <dl><dt><a name=
"ExtensionPage-__init__"><strong>__init__
</strong></a>(self, inspector_backend)
</dt></dl>
62 Methods inherited from
<a href=
"telemetry.core.web_contents.html#WebContents">telemetry.core.web_contents.WebContents
</a>:
<br>
63 <dl><dt><a name=
"ExtensionPage-Close"><strong>Close
</strong></a>(self)
</dt><dd><tt>Closes
this
page.
<br>
65 Not
all
browsers
or
browser
versions
support
this
method.
<br>
66 Be
sure
to
check
browser.supports_tab_control.
</tt></dd></dl>
68 <dl><dt><a name=
"ExtensionPage-EvaluateJavaScript"><strong>EvaluateJavaScript
</strong></a>(self, expr, timeout
<font color=
"#909090">=
90</font>)
</dt><dd><tt>Evalutes
expr
in
JavaScript
and
returns
the
JSONized
result.
<br>
70 Consider
using
ExecuteJavaScript
for
cases
where
the
result
of
the
<br>
71 expression
is
not
needed.
<br>
73 If
evaluation
throws
in
JavaScript,
a
Python
EvaluateException
will
<br>
76 If
the
result
of
the
evaluation
cannot
be
JSONized,
then
an
<br>
77 EvaluationException
will
be
raised.
</tt></dd></dl>
79 <dl><dt><a name=
"ExtensionPage-EvaluateJavaScriptInContext"><strong>EvaluateJavaScriptInContext
</strong></a>(self, expr, context_id, timeout
<font color=
"#909090">=
90</font>)
</dt><dd><tt>Similar
to
ExecuteJavaScript,
except
context_id
can
refer
to
an
iframe.
<br>
80 The
main
page
has
context_id=
1,
the
first
iframe
context_id=
2,
etc.
</tt></dd></dl>
82 <dl><dt><a name=
"ExtensionPage-ExecuteJavaScript"><strong>ExecuteJavaScript
</strong></a>(self, expr, timeout
<font color=
"#909090">=
90</font>)
</dt><dd><tt>Executes
expr
in
JavaScript.
Does
not
return
the
result.
<br>
84 If
the
expression
failed
to
evaluate,
EvaluateException
will
be
raised.
</tt></dd></dl>
86 <dl><dt><a name=
"ExtensionPage-ExecuteJavaScriptInContext"><strong>ExecuteJavaScriptInContext
</strong></a>(self, expr, context_id, timeout
<font color=
"#909090">=
90</font>)
</dt><dd><tt>Similar
to
ExecuteJavaScript,
except
context_id
can
refer
to
an
iframe.
<br>
87 The
main
page
has
context_id=
1,
the
first
iframe
context_id=
2,
etc.
</tt></dd></dl>
89 <dl><dt><a name=
"ExtensionPage-HasReachedQuiescence"><strong>HasReachedQuiescence
</strong></a>(self)
</dt><dd><tt>Determine
whether
the
page
has
reached
quiescence
after
loading.
<br>
92 True
if
2 seconds
have
passed
since
last
resource
received,
false
<br>
93 otherwise.
</tt></dd></dl>
95 <dl><dt><a name=
"ExtensionPage-StartTimelineRecording"><strong>StartTimelineRecording
</strong></a>(self, options
<font color=
"#909090">=None
</font>)
</dt></dl>
97 <dl><dt><a name=
"ExtensionPage-StopTimelineRecording"><strong>StopTimelineRecording
</strong></a>(self)
</dt></dl>
99 <dl><dt><a name=
"ExtensionPage-TakeJSHeapSnapshot"><strong>TakeJSHeapSnapshot
</strong></a>(self, timeout
<font color=
"#909090">=
120</font>)
</dt></dl>
101 <dl><dt><a name=
"ExtensionPage-WaitForDocumentReadyStateToBeComplete"><strong>WaitForDocumentReadyStateToBeComplete
</strong></a>(self, timeout
<font color=
"#909090">=
90</font>)
</dt></dl>
103 <dl><dt><a name=
"ExtensionPage-WaitForDocumentReadyStateToBeInteractiveOrBetter"><strong>WaitForDocumentReadyStateToBeInteractiveOrBetter
</strong></a>(self, timeout
<font color=
"#909090">=
90</font>)
</dt></dl>
105 <dl><dt><a name=
"ExtensionPage-WaitForJavaScriptExpression"><strong>WaitForJavaScriptExpression
</strong></a>(self, expr, timeout)
</dt><dd><tt>Waits
for
the
given
JavaScript
expression
to
be
True.
<br>
107 This
method
is
robust
against
any
given
Evaluation
timing
out.
</tt></dd></dl>
110 Data descriptors inherited from
<a href=
"telemetry.core.web_contents.html#WebContents">telemetry.core.web_contents.WebContents
</a>:
<br>
111 <dl><dt><strong>__dict__
</strong></dt>
112 <dd><tt>dictionary
for
instance
variables
(if
defined)
</tt></dd>
114 <dl><dt><strong>__weakref__
</strong></dt>
115 <dd><tt>list
of
weak
references
to
the
object
(if
defined)
</tt></dd>
117 <dl><dt><strong>is_timeline_recording_running
</strong></dt>
119 <dl><dt><strong>message_output_stream
</strong></dt>
121 <dl><dt><strong>timeline_model
</strong></dt>
123 </td></tr></table></td></tr></table><p>
124 <table width=
"100%" cellspacing=
0 cellpadding=
2 border=
0 summary=
"section">
125 <tr bgcolor=
"#eeaa77">
126 <td colspan=
3 valign=bottom
> <br>
127 <font color=
"#ffffff" face=
"helvetica, arial"><big><strong>Functions
</strong></big></font></td></tr>
129 <tr><td bgcolor=
"#eeaa77"><tt> </tt></td><td> </td>
130 <td width=
"100%"><dl><dt><a name=
"-UrlToExtensionId"><strong>UrlToExtensionId
</strong></a>(url)
</dt></dl>