Questions tagged [webengine]
64 questions
0
votes
1 answer
How to change QML WebEngineView URL error page
I'm using WebEngine in QML. Is there a way to change what gets displayed when there is a bad URL? It currently says something like:
This site can’t be reached
The webpage at qrc:/blahblah.html might be temporarily down or it may have moved…

Paul DeRocco
- 403
- 3
- 15
0
votes
0 answers
Javafx Webview into container (Splitpane here)
Can we add the JavaFX Webview into a container?
Actually I have a project in progress and I would like to have only one windows for ma UI. The "SplitPane" UI might be a good answer for me and functionalities I have to display. (see below)
In the…

stann
- 1
0
votes
0 answers
Java execute webpage
I have a problem , I'm trying to do an app that connect a webpage and login , I have find jsoup and webenginr , the problem that after the login a JavaScript redirect me in another page , how can login in page and use JavaScript for redirect me in…
0
votes
1 answer
Obtain on screen HTML from JavaFX WebView/WebEngine
I've been looking for a way to obtain the HTML that is currently on the screen of a JavaFX WebView/WebEngine.
I've tried:
(String) javaWeb.webEngine.executeScript("document.documentElement.outerHTML");
However, this does not give me everything I'm…

Bill Kleinhomer
- 58
- 1
- 8
0
votes
1 answer
webView JavaFX Redirect A Certain URL When Accessed
I am using javaFX webView how can I redirect a certain URL to other.
example :-
if user access
example.com/pathabc
redirect it to
example.com/pathxyz
Thank You.
Edit :-
Let's say if I loaded example.com (I can't change this I have to load…

Vinit Patil
- 21
- 5
0
votes
1 answer
IMX6 + webengine doesn't display latest website state, why?
I've written a simple website in html, css, js. No error and everything display's fine in the chromium desktop version.
The problem is, that i would like to display it on the IMX6 Solo + webengine.
For developing reason's i used Apache2 and just did…

Milo
- 23
- 2
- 11
0
votes
1 answer
Can I use Chromium dev tools on mobile device?
I am mobile device web middleware developer, and I have to check some webapp's performance (not an Android, not an iOS device).
Those webapps (not a web service or web page. those are a kind of hybrid app) are very device dependent, so I can't use…

Jihwan Kim
- 41
- 1
- 5
0
votes
1 answer
JavaFX8 JavaScript Callback via WebEngine issue
I am having an issue with the WebEngine class in JavaFX, in which the JavaScript callback just seems to stop working.
webEngine =…

Selensija
- 21
- 2
0
votes
1 answer
java.lang.IllegalArgumentException: Invalid cookie name-value pair
I've problem with a cookies in WebEngine in Java. When I try open the specified url, I receive that exception:
lip 13, 2017 3:18:25 PM com.sun.webkit.network.URLLoader doRun
WARNING: Unexpected error
java.lang.IllegalArgumentException:…

DarekEs
- 1
- 2
0
votes
0 answers
Qt: Shut down the application when the user doesn't a supported OpenGL version
I use Qt 5.7 with Web Engine in my application. The application has thousands of users and for some of them the whole application crashes (with the classic Windows "app.exe has stopped working" dialog) when trying to load a webpage in my webview.…

Filip Vondrášek
- 1,208
- 1
- 13
- 26
0
votes
1 answer
Using JavaFx WebEngine to load a local file and adding parameters to the url. Not working when executing program from jar
I have been programming a GUI to display data from sensors.
The gui includes a google map visualizer displaying the data with markers (through gps readings).
I had been passing in the readings in through the url by using '?' and '&':
String url…
0
votes
1 answer
How can I make the WebView in JavaFx wait an arbitrary amount of time without hanging the app?
Can someone please explain to me what I am doing wrong with the below code?
I am using the executeJavascript method to send a series of commands to the Webview, I want to loop through each command and then wait an arbitrary amount of time before the…

Ben Simms
- 41
- 1
- 5
0
votes
2 answers
JavaFX WebEngine Button Click
PROBLEM: Click a button on a loaded page (via JavaFX WebEngine). Button is
In Java:
HTMLInputElement…

Zon
- 18,610
- 7
- 91
- 99
0
votes
1 answer
JavaFX, webEngine, webView. Change src of
tag (inside just loaded document) on the fly
Firstly as for the desktop (not Android) application.
I want to replace the source of an image which is placed inside loaded HTML document to local one (from my hard drive).
I show loaded page using JavaFX components:…

Kessler
- 31
- 6
0
votes
1 answer
JavaFX - Access to DOM Model of the WebEngine
I'm using a listener for the state of the web engine and it's working fine. Also the document is filled at this time, because the State SUCCEEDED is reached.
The State Listener:
public class WebViewListener implements ChangeListener {
…

Soprano1203
- 1
- 2