WebView#
Superclasses: WebViewBase, Widget, InitiallyUnowned, Object
Implemented Interfaces: Accessible, Buildable, ConstraintTarget
The central class of the WPE WebKit and WebKitGTK APIs.
WebView is the central class of the WPE WebKit and WebKitGTK
APIs. It is responsible for managing the drawing of the content and
forwarding of events. You can load any URI into the WebView or
a data string. With Settings you can control various aspects
of the rendering and loading of the content.
Note that in WebKitGTK, WebView is scrollable by itself, so
you don’t need to embed it in a ScrolledWindow.
Constructors#
- class WebView
- classmethod new() Widget#
Creates a new
WebViewwith the defaultWebContext.Creates a new
WebViewwith the defaultWebContextand noUserContentManagerassociated with it. See also webkit_web_view_new_with_context(), webkit_web_view_new_with_user_content_manager(), and webkit_web_view_new_with_settings().
Methods#
- class WebView
- async call_async_javascript_function(self, body: str, length: int, arguments: Variant | None = None, world_name: str | None = None, source_uri: str | None = None) Value#
This is the awaitable version of
call_async_javascript_function().Added in version 2.40.
- Parameters:
body – the function body
length – length of
body, or -1 ifbodyis a nul-terminated stringarguments – a
Variantwith formata{sv}storing the function arguments, orNoneworld_name – the name of a
WebKitScriptWorldorNoneto use the defaultsource_uri – the source URI
- call_async_javascript_function(body: str, length: int, arguments: Variant | None = None, world_name: str | None = None, source_uri: str | None = None, cancellable: Cancellable | None = None, callback: Callable[[Object | None, AsyncResult, Any], None] | None = None, user_data: Any = None) None#
Asynchronously call
bodywithargumentsin the script world with nameworld_nameof the main frame current context inweb_view. Theargumentsvalues must be one of the following types, or contain only the following GVariant types: number, string and dictionary. The result of the operation can be a Promise that will be properly passed to the callback. Ifworld_nameisNone, the default world is used. Any value that is notNoneis a distin ct world. Thesource_uriwill be shown in exceptions and doesn’t affect the behavior of the script. When not provided, the document URL is used.Note that if
Settings:enable-javascript isFalse, this method will do nothing. If you want to use this method but still prevent web content from executing its own JavaScript, then useSettings:enable-javascript-markup.When the operation is finished,
callbackwill be called. You can then callcall_async_javascript_function_finish()to get the result of the operation.This is an example that shows how to pass arguments to a JS function that returns a Promise that resolves with the passed argument:
static void web_view_javascript_finished (GObject *object, GAsyncResult *result, gpointer user_data) { JSCValue *value; GError *error = NULL; value = webkit_web_view_call_async_javascript_function_finish (WEBKIT_WEB_VIEW (object), result, &error); if (!value) { g_warning ("Error running javascript: %s", error->message); g_error_free (error); return; } if (jsc_value_is_number (value)) { gint32 int_value = jsc_value_to_string (value); JSCException *exception = jsc_context_get_exception (jsc_value_get_context (value)); if (exception) g_warning ("Error running javascript: %s", jsc_exception_get_message (exception)); else g_print ("Script result: %d\n", int_value); g_free (str_value); } else { g_warning ("Error running javascript: unexpected return value"); } g_object_unref (value); } static void web_view_evaluate_promise (WebKitWebView *web_view) { GVariantDict dict; g_variant_dict_init (&dict, NULL); g_variant_dict_insert (&dict, "count", "u", 42); GVariant *args = g_variant_dict_end (&dict); const gchar *body = "return new Promise((resolve) => { resolve(count); });"; webkit_web_view_call_async_javascript_function (web_view, body, -1, arguments, NULL, NULL, NULL, web_view_javascript_finished, NULL); }
Added in version 2.40.
- Parameters:
body – the function body
length – length of
body, or -1 ifbodyis a nul-terminated stringarguments – a
Variantwith formata{sv}storing the function arguments, orNoneworld_name – the name of a
WebKitScriptWorldorNoneto use the defaultsource_uri – the source URI
cancellable – a
CancellableorNoneto ignorecallback – a
AsyncReadyCallbackto call when the script finisheduser_data – the data to pass to callback function
- call_async_javascript_function_finish(result: AsyncResult) Value#
Finish an asynchronous operation started with
call_async_javascript_function().Added in version 2.40.
- Parameters:
result – a
AsyncResult
- async can_execute_editing_command(self, command: str) bool#
This is the awaitable version of
can_execute_editing_command().- Parameters:
command – the command to check
- can_execute_editing_command(command: str, cancellable: Cancellable | None = None, callback: Callable[[Object | None, AsyncResult, Any], None] | None = None, user_data: Any = None) None#
Asynchronously check if it is possible to execute the given editing command.
When the operation is finished,
callbackwill be called. You can then callcan_execute_editing_command_finish()to get the result of the operation.- Parameters:
command – the command to check
cancellable – a
CancellableorNoneto ignorecallback – a
AsyncReadyCallbackto call when the request is satisfieduser_data – the data to pass to callback function
- can_execute_editing_command_finish(result: AsyncResult) bool#
Finish an asynchronous operation started with
can_execute_editing_command().- Parameters:
result – a
AsyncResult
- can_show_mime_type(mime_type: str) bool#
Whether or not a MIME type can be displayed in
web_view.- Parameters:
mime_type – a MIME type
- do_authenticate(self, request: AuthenticationRequest) bool#
- Parameters:
request
- Parameters:
context_menu
hit_test_result
- do_decide_policy(self, decision: PolicyDecision, type: PolicyDecisionType) bool#
- Parameters:
decision
type
- do_insecure_content_detected(self, event: InsecureContentEvent) None#
- Parameters:
event
- do_load_failed(self, load_event: LoadEvent, failing_uri: str, error: GError) bool#
- Parameters:
load_event
failing_uri
error
- do_load_failed_with_tls_errors(self, failing_uri: str, certificate: TlsCertificate, errors: TlsCertificateFlags) bool#
- Parameters:
failing_uri
certificate
errors
- do_mouse_target_changed(self, hit_test_result: HitTestResult, modifiers: int) None#
- Parameters:
hit_test_result
modifiers
- do_permission_request(self, permission_request: PermissionRequest) bool#
- Parameters:
permission_request
- do_print_(self, print_operation: PrintOperation) bool#
- Parameters:
print_operation
- do_query_permission_state(self, query: PermissionStateQuery) bool#
- Parameters:
query
- do_resource_load_started(self, resource: WebResource, request: URIRequest) None#
- Parameters:
resource
request
- do_run_color_chooser(self, request: ColorChooserRequest) bool#
- Parameters:
request
- do_run_file_chooser(self, request: FileChooserRequest) bool#
- Parameters:
request
- do_script_dialog(self, dialog: ScriptDialog) bool#
- Parameters:
dialog
- do_show_notification(self, notification: Notification) bool#
- Parameters:
notification
- Parameters:
menu
rectangle
- do_submit_form(self, request: FormSubmissionRequest) None#
- Parameters:
request
- do_user_message_received(self, message: UserMessage) bool#
- Parameters:
message
- do_web_process_terminated(self, reason: WebProcessTerminationReason) None#
- Parameters:
reason
- download_uri(uri: str) Download#
Requests downloading of the specified URI string for
web_view.- Parameters:
uri – the URI to download
- async evaluate_javascript(self, script: str, length: int, world_name: str | None = None, source_uri: str | None = None) Value#
This is the awaitable version of
evaluate_javascript().Added in version 2.40.
- Parameters:
script – the script to evaluate
length – length of
script, or -1 ifscriptis a nul-terminated stringworld_name – the name of a
WebKitScriptWorldorNoneto use the defaultsource_uri – the source URI
- evaluate_javascript(script: str, length: int, world_name: str | None = None, source_uri: str | None = None, cancellable: Cancellable | None = None, callback: Callable[[Object | None, AsyncResult, Any], None] | None = None, user_data: Any = None) None#
Asynchronously evaluate
scriptin the script world with nameworld_nameof the main frame current context inweb_view. Ifworld_nameisNone, the default world is used. Any value that is notNoneis a distinct world. Thesource_uriwill be shown in exceptions and doesn’t affect the behavior of the script. When not provided, the document URL is used.Note that if
Settings:enable-javascript isFalse, this method will do nothing. If you want to use this method but still prevent web content from executing its own JavaScript, then useSettings:enable-javascript-markup.When the operation is finished,
callbackwill be called. You can then callevaluate_javascript_finish()to get the result of the operation.This is an example of using
evaluate_javascript()with a script returning a string:static void web_view_javascript_finished (GObject *object, GAsyncResult *result, gpointer user_data) { JSCValue *value; GError *error = NULL; value = webkit_web_view_evaluate_javascript_finish (WEBKIT_WEB_VIEW (object), result, &error); if (!value) { g_warning ("Error running javascript: %s", error->message); g_error_free (error); return; } if (jsc_value_is_string (value)) { gchar *str_value = jsc_value_to_string (value); JSCException *exception = jsc_context_get_exception (jsc_value_get_context (value)); if (exception) g_warning ("Error running javascript: %s", jsc_exception_get_message (exception)); else g_print ("Script result: %s\n", str_value); g_free (str_value); } else { g_warning ("Error running javascript: unexpected return value"); } g_object_unref (value); } static void web_view_get_link_url (WebKitWebView *web_view, const gchar *link_id) { gchar *script = g_strdup_printf ("window.document.getElementById('%s').href;", link_id); webkit_web_view_evaluate_javascript (web_view, script, -1, NULL, NULL, NULL, web_view_javascript_finished, NULL); g_free (script); }
Added in version 2.40.
- Parameters:
script – the script to evaluate
length – length of
script, or -1 ifscriptis a nul-terminated stringworld_name – the name of a
WebKitScriptWorldorNoneto use the defaultsource_uri – the source URI
cancellable – a
CancellableorNoneto ignorecallback – a
AsyncReadyCallbackto call when the script finisheduser_data – the data to pass to callback function
- evaluate_javascript_finish(result: AsyncResult) Value#
Finish an asynchronous operation started with
evaluate_javascript().Added in version 2.40.
- Parameters:
result – a
AsyncResult
- execute_editing_command(command: str) None#
Request to execute the given
commandforweb_view.You can use
can_execute_editing_command()to check whether it’s possible to execute the command.- Parameters:
command – the command to execute
- execute_editing_command_with_argument(command: str, argument: str) None#
Request to execute the given
commandwithargumentforweb_view.You can use
can_execute_editing_command()to check whether it’s possible to execute the command.Added in version 2.10.
- Parameters:
command – the command to execute
argument – the command argument
- get_automation_presentation_type() AutomationBrowsingContextPresentation#
Get the presentation type of
WebViewwhen created for automation.Added in version 2.28.
- get_back_forward_list() BackForwardList#
Obtains the
BackForwardListassociated with the givenWebView.The
BackForwardListis owned by theWebView.
- get_background_color() RGBA#
Gets the color that is used to draw the
web_viewbackground.Gets the color that is used to draw the
web_viewbackground before the actual contents are rendered. For more information see alsoset_background_color()Added in version 2.8.
- get_camera_capture_state() MediaCaptureState#
Get the camera capture state of a
WebView.Added in version 2.34.
- get_context() WebContext#
Gets the web context of
web_view.
- get_default_content_security_policy() str | None#
Gets the configured default Content-Security-Policy.
Added in version 2.38.
- get_display_capture_state() MediaCaptureState#
Get the display capture state of a
WebView.Added in version 2.34.
- get_editor_state() EditorState#
Gets the web editor state of
web_view.Added in version 2.10.
- get_estimated_load_progress() float#
Gets the value of the
WebView:estimated-load-progress property.You can monitor the estimated progress of a load operation by connecting to the notify::estimated-load-progress signal of
web_view.
- get_favicon() Texture#
Returns favicon currently associated to
web_view.Returns favicon currently associated to
web_view, if any. You can connect to notify::favicon signal ofweb_viewto be notified when the favicon is available.
- get_find_controller() FindController#
Gets the
FindController.Gets the
FindControllerthat will allow the caller to query theWebViewfor the text to look for.
- get_input_method_context() InputMethodContext | None#
Get the
InputMethodContextcurrently in use byweb_view.Get the
InputMethodContextcurrently in use byweb_view, orNoneif no input method is being used.Added in version 2.28.
- get_inspector() WebInspector#
Get the
WebInspectorassociated toweb_view
- get_is_web_process_responsive() bool#
Get whether the current web process of a
WebViewis responsive.Added in version 2.34.
- get_main_resource() WebResource#
Return the main resource of
web_view.
- get_microphone_capture_state() MediaCaptureState#
Get the microphone capture state of a
WebView.Added in version 2.34.
- get_network_session() NetworkSession#
Get the
NetworkSessionassociated toweb_view.Added in version 2.40.
- get_session_state() WebViewSessionState#
Gets the current session state of
web_viewAdded in version 2.12.
- get_settings() Settings#
Gets the
Settingscurrently applied toweb_view.If no other
Settingshave been explicitly applied toweb_viewwithset_settings(), the defaultSettingswill be returned. This method always returns a validSettingsobject. To modify any of theweb_viewsettings, you can either create a newSettingsobject withnew(), setting the desired preferences, and then replace the existingweb_viewsettings withset_settings()or get the existingweb_viewsettings and update it directly.Settingsobjects can be shared by multipleWebView<!– –>s, so modifying the settings of aWebViewwould affect otherWebView<!– –>s using the sameSettings.
- async get_snapshot(self, region: SnapshotRegion, options: SnapshotOptions) Texture#
This is the awaitable version of
get_snapshot().- Parameters:
region – the
SnapshotRegionfor this snapshotoptions –
SnapshotOptionsfor the snapshot
- get_snapshot(region: SnapshotRegion, options: SnapshotOptions, cancellable: Cancellable | None = None, callback: Callable[[Object | None, AsyncResult, Any], None] | None = None, user_data: Any = None) None#
Asynchronously retrieves a snapshot of
web_viewforregion.optionsspecifies how the snapshot should be rendered.When the operation is finished,
callbackwill be called. You must callget_snapshot_finish()to get the result of the operation.- Parameters:
region – the
SnapshotRegionfor this snapshotoptions –
SnapshotOptionsfor the snapshotcancellable – a
Cancellablecallback – a
AsyncReadyCallbackuser_data – user data
- get_snapshot_finish(result: AsyncResult) Texture#
Finishes an asynchronous operation started with
get_snapshot().- Parameters:
result – a
AsyncResult
- get_title() str#
Gets the value of the
WebView:title property.You can connect to notify::title signal of
web_viewto be notified when the title has been received.
- get_tls_info() tuple[bool, TlsCertificate, TlsCertificateFlags]#
Retrieves the
TlsCertificateassociated with the main resource ofweb_view.Retrieves the
TlsCertificateassociated with the main resource ofweb_view, and theTlsCertificateFlagsshowing what problems, if any, have been found with that certificate. If the connection is not HTTPS, this function returnsFalse. This function should be called after a response has been received from the server, so you can connect toWebView::load-changed and call this function when it’s emitted withCOMMITTEDevent.Note that this function provides no information about the security of the web page if the current
TLSErrorsPolicyisIGNORE, as subresources of the page may be controlled by an attacker. This function may safely be used to determine the security status of the current page only if the currentTLSErrorsPolicyisFAIL, in which case subresources that fail certificate verification will be blocked.
- get_uri() str#
Returns the current active URI of
web_view.The active URI might change during a load operation:
<orderedlist> <listitem><para>
When nothing has been loaded yet on
web_viewthe active URI isNone.</para></listitem> <listitem><para>
When a new load operation starts the active URI is the requested URI: <itemizedlist> <listitem><para>
If the load operation was started by
load_uri(), the requested URI is the given one.</para></listitem> <listitem><para>
If the load operation was started by
load_html(), the requested URI is “about:blank”.</para></listitem> <listitem><para>
If the load operation was started by
load_alternate_html(), the requested URI is content URI provided.</para></listitem> <listitem><para>
If the load operation was started by
go_back()orgo_forward(), the requested URI is the original URI of the previous/next item in theBackForwardListofweb_view.</para></listitem> <listitem><para>
If the load operation was started by
go_to_back_forward_list_item(), the requested URI is the opriginal URI of the givenBackForwardListItem.</para></listitem> </itemizedlist>
</para></listitem> <listitem><para>
If there is a server redirection during the load operation, the active URI is the redirected URI. When the signal
WebView::load-changed is emitted withREDIRECTEDevent, the active URI is already updated to the redirected URI.</para></listitem> <listitem><para>
</para></listitem> </orderedlist>
You can monitor the active URI by connecting to the notify::uri signal of
web_view.
- get_user_content_manager() UserContentManager#
Gets the user content manager associated to
web_view.Added in version 2.6.
- get_web_extension_mode() WebExtensionMode#
Get the view’s
WebExtensionMode.Added in version 2.38.
- get_website_policies() WebsitePolicies#
Gets the default website policies.
Gets the default website policies set on construction in the
web_view. These can be overridden on a per-origin basis via theWebView::decide-policy signal handler.See also
use_with_policies().Added in version 2.30.
- get_window_properties() WindowProperties#
Get the
WindowPropertiesobject.Get the
WindowPropertiesobject containing the properties that the window containingweb_viewshould have.
- get_zoom_level() float#
Set the zoom level of
web_view.Get the zoom level of
web_view, i.e. the factor by which the view contents are scaled with respect to their original size.
- go_back() None#
Loads the previous history item.
You can monitor the load operation by connecting to
WebView::load-changed signal.
- go_forward() None#
Loads the next history item.
You can monitor the load operation by connecting to
WebView::load-changed signal.
- go_to_back_forward_list_item(list_item: BackForwardListItem) None#
Loads the specific history item
list_item.You can monitor the load operation by connecting to
WebView::load-changed signal.- Parameters:
list_item – a
BackForwardListItem
- is_controlled_by_automation() bool#
Get whether a
WebViewwas created withWebView:is-controlled-by-automation property enabled.Only
WebView<!– –>s controlled by automation can be used in an automation session.Added in version 2.18.
- is_editable() bool#
Gets whether the user is allowed to edit the HTML document.
When
web_viewis not editable an element in the HTML document can only be edited if the CONTENTEDITABLE attribute has been set on the element or one of its parent elements. By default aWebViewis not editable.Added in version 2.8.
- is_loading() bool#
Gets the value of the
WebView:is-loading property.You can monitor when a
WebViewis loading a page by connecting to notify::is-loading signal ofweb_view. This is useful when you are interesting in knowing when the view is loading something but not in the details about the status of the load operation, for example to start a spinner when the view is loading a page and stop it when it finishes.
- is_playing_audio() bool#
Gets the value of the
WebView:is-playing-audio property.You can monitor when a page in a
WebViewis playing audio by connecting to the notify::is-playing-audio signal ofweb_view. This is useful when the application wants to provide visual feedback when a page is producing sound.Added in version 2.8.
- load_alternate_html(content: str, content_uri: str, base_uri: str | None = None) None#
Load the given
contentstring for the URIcontent_uri.This allows clients to display page-loading errors in the
WebViewitself. When this method is called fromWebView::load-failed signal to show an error page, then the back-forward list is maintained appropriately. For everything else this method works the same way asload_html().- Parameters:
content – the new content to display as the main page of the
web_viewcontent_uri – the URI for the alternate page content
base_uri – the base URI for relative locations or
None
- load_bytes(bytes: Bytes, mime_type: str | None = None, encoding: str | None = None, base_uri: str | None = None) None#
Load the specified
bytesintoweb_viewusing the givenmime_typeandencoding.When
mime_typeisNone, it defaults to “text/html”. WhenencodingisNone, it defaults to “UTF-8”. Whenbase_uriisNone, it defaults to “about:blank”. You can monitor the load operation by connecting toWebView::load-changed signal.Added in version 2.6.
- Parameters:
bytes – input data to load
mime_type – the MIME type of
bytes, orNoneencoding – the character encoding of
bytes, orNonebase_uri – the base URI for relative locations or
None
- load_html(content: str, base_uri: str | None = None) None#
Load the given
contentstring with the specifiedbase_uri.If
base_uriis notNone, relative URLs in thecontentwill be resolved againstbase_uriand absolute local paths must be children of thebase_uri. For security reasons absolute local paths that are not children ofbase_uriwill cause the web process to terminate. If you need to include URLs incontentthat are local paths in a different directory thanbase_uriyou can build a data URI for them. Whenbase_uriisNone, it defaults to “about:blank”. The mime type of the document will be “text/html”. You can monitor the load operation by connecting toWebView::load-changed signal.- Parameters:
content – The HTML string to load
base_uri – The base URI for relative locations or
None
- load_plain_text(plain_text: str) None#
Load the specified
plain_textstring intoweb_view.The mime type of document will be “text/plain”. You can monitor the load operation by connecting to
WebView::load-changed signal.- Parameters:
plain_text – The plain text to load
- load_request(request: URIRequest) None#
Requests loading of the specified
URIRequest.You can monitor the load operation by connecting to
WebView::load-changed signal.- Parameters:
request – a
URIRequestto load
- load_uri(uri: str) None#
Requests loading of the specified URI string.
You can monitor the load operation by connecting to
WebView::load-changed signal.- Parameters:
uri – an URI string
- reload() None#
Reloads the current contents of
web_view.See also
reload_bypass_cache().
- restore_session_state(state: WebViewSessionState) None#
Restore the
web_viewsession state fromstateAdded in version 2.12.
- Parameters:
state – a
WebViewSessionState
- async save(self, save_mode: SaveMode) InputStream#
This is the awaitable version of
save().- Parameters:
save_mode – the
SaveModespecifying how the web page should be saved.
- save(save_mode: SaveMode, cancellable: Cancellable | None = None, callback: Callable[[Object | None, AsyncResult, Any], None] | None = None, user_data: Any = None) None#
Asynchronously save the current web page.
Asynchronously save the current web page associated to the
WebViewinto a self-contained format using the mode specified insave_mode.When the operation is finished,
callbackwill be called. You can then callsave_finish()to get the result of the operation.- Parameters:
save_mode – the
SaveModespecifying how the web page should be saved.cancellable – a
CancellableorNoneto ignorecallback – a
AsyncReadyCallbackto call when the request is satisfieduser_data – the data to pass to callback function
- save_finish(result: AsyncResult) InputStream#
Finish an asynchronous operation started with
save().- Parameters:
result – a
AsyncResult
- async save_to_file(self, file: File, save_mode: SaveMode) bool#
This is the awaitable version of
save_to_file().
- save_to_file(file: File, save_mode: SaveMode, cancellable: Cancellable | None = None, callback: Callable[[Object | None, AsyncResult, Any], None] | None = None, user_data: Any = None) None#
Asynchronously save the current web page.
Asynchronously save the current web page associated to the
WebViewinto a self-contained format using the mode specified insave_modeand writing it tofile.When the operation is finished,
callbackwill be called. You can then callsave_to_file_finish()to get the result of the operation.- Parameters:
file – the
Filewhere the current web page should be saved to.save_mode – the
SaveModespecifying how the web page should be saved.cancellable – a
CancellableorNoneto ignorecallback – a
AsyncReadyCallbackto call when the request is satisfieduser_data – the data to pass to callback function
- save_to_file_finish(result: AsyncResult) bool#
Finish an asynchronous operation started with
save_to_file().- Parameters:
result – a
AsyncResult
- async send_message_to_page(self, message: UserMessage) UserMessage#
This is the awaitable version of
send_message_to_page().Added in version 2.28.
- Parameters:
message – a
UserMessage
- send_message_to_page(message: UserMessage, cancellable: Cancellable | None = None, callback: Callable[[Object | None, AsyncResult, Any], None] | None = None, user_data: Any = None) None#
Send
messageto theWebKitWebPagecorresponding toweb_view.If
messageis floating, it’s consumed. If you don’t expect any reply, or you simply want to ignore it, you can passNoneascallback. When the operation is finished,callbackwill be called. You can then callsend_message_to_page_finish()to get the message reply.Added in version 2.28.
- Parameters:
message – a
UserMessagecancellable – a
CancellableorNoneto ignorecallback – (nullable): A
AsyncReadyCallbackto call when the request is satisfied orNoneuser_data – the data to pass to callback function
- send_message_to_page_finish(result: AsyncResult) UserMessage#
Finish an asynchronous operation started with
send_message_to_page().Added in version 2.28.
- Parameters:
result – a
AsyncResult
- set_background_color(rgba: RGBA) None#
Sets the color that will be used to draw the
web_viewbackground.Sets the color that will be used to draw the
web_viewbackground before the actual contents are rendered. Note that if the web page loaded inweb_viewspecifies a background color, it will take precedence over thergbacolor. By default theweb_viewbackground color is opaque white.Added in version 2.8.
- Parameters:
rgba – a
RGBA
- set_camera_capture_state(state: MediaCaptureState) None#
Set the camera capture state of a
WebView.If
Settings:enable-mediastream isFalse, this method will have no visible effect. Once the state of the device has been set toNONEit cannot be changed anymore. The page can however request capture again using the mediaDevices API.Added in version 2.34.
- Parameters:
state – a
MediaCaptureState
- set_cors_allowlist(allowlist: list[str] | None = None) None#
Sets the
allowlistfor CORS.Sets the
allowlistfor which Cross-Origin Resource Sharing checks are disabled inweb_view. URI patterns must be of the form[protocol]://[host]/[path], each component may contain the wildcard character (*) to represent zero or more other characters. All three components are required and must not be omitted from the URI patterns.Disabling CORS checks permits resources from other origins to load allowlisted resources. It does not permit the allowlisted resources to load resources from other origins.
If this function is called multiple times, only the allowlist set by the most recent call will be effective.
Added in version 2.34.
- Parameters:
allowlist – an allowlist of URI patterns, or
None
- set_custom_charset(charset: str | None = None) None#
Sets the current custom character encoding override of
web_view.The custom character encoding will override any text encoding detected via HTTP headers or META tags. Calling this method will stop any current load operation and reload the current page. Setting the custom character encoding to
Noneremoves the character encoding override.- Parameters:
charset – a character encoding name or
None
- set_display_capture_state(state: MediaCaptureState) None#
Set the display capture state of a
WebView.If
Settings:enable-mediastream isFalse, this method will have no visible effect. Once the state of the device has been set toNONEit cannot be changed anymore. The page can however request capture again using the mediaDevices API.Added in version 2.34.
- Parameters:
state – a
MediaCaptureState
- set_editable(editable: bool) None#
Sets whether the user is allowed to edit the HTML document.
If
editableisTrue,web_viewallows the user to edit the HTML document. IfeditableisFalse, an element inweb_view's document can only be edited if the CONTENTEDITABLE attribute has been set on the element or one of its parent elements. By default aWebViewis not editable.Normally, a HTML document is not editable unless the elements within the document are editable. This function provides a way to make the contents of a
WebVieweditable without altering the document or DOM structure.Added in version 2.8.
- Parameters:
editable – a
gbooleanindicating the editable state
- set_input_method_context(context: InputMethodContext | None = None) None#
Set the
InputMethodContextto be used byweb_view.Set the
InputMethodContextto be used byweb_view, orNoneto not use any input method. Note that the sameInputMethodContextcan’t be set on more than oneWebViewat the same time.Added in version 2.28.
- Parameters:
context – the
InputMethodContextto set, orNone
- set_is_muted(muted: bool) None#
Sets the mute state of
web_view.Added in version 2.30.
- Parameters:
muted – mute flag
- set_microphone_capture_state(state: MediaCaptureState) None#
Set the microphone capture state of a
WebView.If
Settings:enable-mediastream isFalse, this method will have no visible effect. Once the state of the device has been set toNONEit cannot be changed anymore. The page can however request capture again using the mediaDevices API.Added in version 2.34.
- Parameters:
state – a
MediaCaptureState
- set_settings(settings: Settings) None#
Sets the
Settingsto be applied toweb_view.The existing
Settingsofweb_viewwill be replaced bysettings. New settings are applied immediately onweb_view. The sameSettingsobject can be shared by multipleWebView<!– –>s.- Parameters:
settings – a
Settings
- set_zoom_level(zoom_level: float) None#
Set the zoom level of
web_view.Set the zoom level of
web_view, i.e. the factor by which the view contents are scaled with respect to their original size.- Parameters:
zoom_level – the zoom level
- stop_loading() None#
Stops any ongoing loading operation in
web_view.This method does nothing if no content is being loaded. If there is a loading operation in progress, it will be cancelled and
WebView::load-failed signal will be emitted withCANCELLEDerror.
- terminate_web_process() None#
Terminates the web process associated to
web_view.When the web process gets terminated using this method, the
WebView::web-process-terminated signal is emitted withTERMINATED_BY_APIas the reason for termination.Added in version 2.34.
- try_close() None#
Tries to close the
web_view.This will fire the onbeforeunload event to ask the user for confirmation to close the page. If there isn’t an onbeforeunload event handler or the user confirms to close the page, the
WebView::close signal is emitted, otherwise nothing happens.Added in version 2.12.
Properties#
- class WebView
- props.automation_presentation_type: AutomationBrowsingContextPresentation#
The type of the None singleton.
Added in version 2.28.
- props.camera_capture_state: MediaCaptureState#
The type of the None singleton.
Added in version 2.34.
- props.display_capture_state: MediaCaptureState#
The type of the None singleton.
Added in version 2.34.
- props.microphone_capture_state: MediaCaptureState#
The type of the None singleton.
Added in version 2.34.
- props.network_session: NetworkSession#
The type of the None singleton.
Added in version 2.40.
The type of the None singleton.
Added in version 2.4.
- props.user_content_manager: UserContentManager#
The type of the None singleton.
Added in version 2.6.
- props.web_context: WebContext#
The type of the None singleton.
- props.web_extension_mode: WebExtensionMode#
The type of the None singleton.
Added in version 2.38.
- props.website_policies: WebsitePolicies#
The type of the None singleton.
Added in version 2.30.
Signals#
- class WebView.signals
- authenticate(request: AuthenticationRequest) bool#
The type of the None singleton.
Added in version 2.2.
- Parameters:
request – a
AuthenticationRequest
The type of the None singleton.
- Parameters:
context_menu – the proposed
ContextMenuhit_test_result – a
HitTestResult
The type of the None singleton.
- create(navigation_action: NavigationAction) Widget#
The type of the None singleton.
- Parameters:
navigation_action – a
NavigationAction
- decide_policy(decision: PolicyDecision, decision_type: PolicyDecisionType) bool#
The type of the None singleton.
- Parameters:
decision – the
PolicyDecisiondecision_type – a
PolicyDecisionTypedenoting the type ofdecision
- insecure_content_detected(event: InsecureContentEvent) None#
The type of the None singleton.
Deprecated since version 2.46: Please do not use it in newly written code
- Parameters:
event – the
InsecureContentEvent
- load_changed(load_event: LoadEvent) None#
The type of the None singleton.
- Parameters:
load_event – the
LoadEvent
- load_failed(load_event: LoadEvent, failing_uri: str, error: GError) bool#
The type of the None singleton.
- load_failed_with_tls_errors(failing_uri: str, certificate: TlsCertificate, errors: TlsCertificateFlags) bool#
The type of the None singleton.
Added in version 2.6.
- Parameters:
failing_uri – the URI that failed to load
certificate – a
TlsCertificateerrors – a
TlsCertificateFlagswith the verification status ofcertificate
- mouse_target_changed(hit_test_result: HitTestResult, modifiers: int) None#
The type of the None singleton.
- Parameters:
hit_test_result – a
HitTestResultmodifiers – a bitmask of
ModifierType
- permission_request(request: PermissionRequest) bool#
The type of the None singleton.
- Parameters:
request – the
PermissionRequest
- print_(print_operation: PrintOperation) bool#
The type of the None singleton.
- Parameters:
print_operation
- query_permission_state(query: PermissionStateQuery) bool#
The type of the None singleton.
Added in version 2.40.
- Parameters:
query – the
PermissionStateQuery
- resource_load_started(resource: WebResource, request: URIRequest) None#
The type of the None singleton.
- Parameters:
resource – a
WebResourcerequest – a
URIRequest
- run_color_chooser(request: ColorChooserRequest) bool#
The type of the None singleton.
Added in version 2.8.
- Parameters:
request – a
ColorChooserRequest
- run_file_chooser(request: FileChooserRequest) bool#
The type of the None singleton.
- Parameters:
request – a
FileChooserRequest
- script_dialog(dialog: ScriptDialog) bool#
The type of the None singleton.
- Parameters:
dialog – the
ScriptDialogto show
- show_notification(notification: Notification) bool#
The type of the None singleton.
Added in version 2.8.
- Parameters:
notification – a
Notification
The type of the None singleton.
Added in version 2.18.
- Parameters:
menu – the
OptionMenurectangle – the option element area
- submit_form(request: FormSubmissionRequest) None#
The type of the None singleton.
- Parameters:
request – a
FormSubmissionRequest
- user_message_received(message: UserMessage) bool#
The type of the None singleton.
Added in version 2.28.
- Parameters:
message – the
UserMessagereceived
- web_process_terminated(reason: WebProcessTerminationReason) None#
The type of the None singleton.
Added in version 2.20.
- Parameters:
reason – the a
WebProcessTerminationReason
Virtual Methods#
- class WebView
- do_authenticate(request: AuthenticationRequest) bool#
The type of the None singleton.
- Parameters:
request
- do_context_menu(context_menu: ContextMenu, hit_test_result: HitTestResult) bool#
The type of the None singleton.
- Parameters:
context_menu
hit_test_result
- do_decide_policy(decision: PolicyDecision, type: PolicyDecisionType) bool#
The type of the None singleton.
- Parameters:
decision
type
- do_insecure_content_detected(event: InsecureContentEvent) None#
The type of the None singleton.
- Parameters:
event
- do_load_failed(load_event: LoadEvent, failing_uri: str, error: GError) bool#
The type of the None singleton.
- Parameters:
load_event
failing_uri
error
- do_load_failed_with_tls_errors(failing_uri: str, certificate: TlsCertificate, errors: TlsCertificateFlags) bool#
The type of the None singleton.
- Parameters:
failing_uri
certificate
errors
- do_mouse_target_changed(hit_test_result: HitTestResult, modifiers: int) None#
The type of the None singleton.
- Parameters:
hit_test_result
modifiers
- do_permission_request(permission_request: PermissionRequest) bool#
The type of the None singleton.
- Parameters:
permission_request
- do_print_(print_operation: PrintOperation) bool#
The type of the None singleton.
- Parameters:
print_operation
- do_query_permission_state(query: PermissionStateQuery) bool#
The type of the None singleton.
- Parameters:
query
- do_resource_load_started(resource: WebResource, request: URIRequest) None#
The type of the None singleton.
- Parameters:
resource
request
- do_run_color_chooser(request: ColorChooserRequest) bool#
The type of the None singleton.
- Parameters:
request
- do_run_file_chooser(request: FileChooserRequest) bool#
The type of the None singleton.
- Parameters:
request
- do_script_dialog(dialog: ScriptDialog) bool#
The type of the None singleton.
- Parameters:
dialog
- do_show_notification(notification: Notification) bool#
The type of the None singleton.
- Parameters:
notification
- do_show_option_menu(menu: OptionMenu, rectangle: Rectangle) bool#
The type of the None singleton.
- Parameters:
menu
rectangle
- do_submit_form(request: FormSubmissionRequest) None#
The type of the None singleton.
- Parameters:
request
- do_user_message_received(message: UserMessage) bool#
The type of the None singleton.
- Parameters:
message
- do_web_process_terminated(reason: WebProcessTerminationReason) None#
The type of the None singleton.
- Parameters:
reason