Questions tagged [webengine]

64 questions
7
votes
1 answer

Cannot sign in to Google in JavaFX WebView

I cannot sign in to Google in JavaFX WebView. The page doesn't load when I click the 'Next' button. Other logins on different websites work fine. Here is an example you can run: import javafx.application.Application; import…
Darkros
  • 251
  • 2
  • 11
5
votes
1 answer

PyQt 5.11 missing WebEngine modules

So I read the note on "PyQt 5.11 missing WebEngine modules" at https://www.riverbankcomputing.com/software/pyqt/download5. But it doesn't help me understand why, or what to do regarding the missing WebEngine modules? The only thing that works is to…
Foxgluvs
  • 51
  • 1
  • 2
4
votes
1 answer

JavaFX: Display PDF in WebView

I need to display a PDF inside the default WebView of JavaFX. I assumed, that i would easily be able to do that like this. import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.web.WebEngine; import…
Anton Horst
  • 263
  • 1
  • 4
  • 11
4
votes
0 answers

JavaFX WebKit crash after building some big strings

This code produces a crash in my machine after clicking [Do it!] twice: import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.layout.Region; import javafx.scene.paint.Color; import javafx.scene.web.WebEngine; import…
4
votes
1 answer

Force QWebEngine to use software rendering

I'm using QWebEngine to display some webpages. Unfortunately it uses OpenGL internally - which leads to a crash on some graphics adapters (one can see the driver-DLL as the reason for the crash easily). As a second caveat it is not possible to catch…
Elmi
  • 5,899
  • 15
  • 72
  • 143
3
votes
0 answers

Javafx use jquery get hidden content transliteration on youtube

I want my program automatically click more then click transliteration of the following youtube page with jquery in javafx The goal I want to get transcribed in source code, I do not know much about jquery if possible wish you help me package…
Ma Tâm
  • 307
  • 4
  • 20
3
votes
0 answers

Issues with JavaFX WebView Background Transparency and WebEngine Printing

I’m on a project, a Revenue Management System and for some reasons it’s required that some reports are displayed on WebView and printed while the design concept demands that the WebView is made transparent. I was able to resolve the WebView…
2
votes
1 answer

JavaFX and SpringBoot: WebEngine causes JVM to crash

I have an JavaFX application that creates a new scene with a StackPane. Inside this StackPane, a label and a WebView are being added. When the WebEngine wants to load a page, however, it causes the application to crash without an error message. I…
Husky
  • 71
  • 1
  • 7
2
votes
0 answers

css contain makes the performance worse

First of all, my thoughts on "css contain” are this. A dom tree with “contain: strict” will isolate the rendering cycle from the entire dom tree. If there is a change in this isolated dom tree, browser will be able to get performance benefits.…
Jaewon Kim
  • 21
  • 2
2
votes
1 answer

Capture a JavaScript event in QtWebEngine

I have to capture a event dispatched from webpage with JavaScript, and then connect it to a slot in my MainWindow class. Something aproaching to that: QWebEngineView *view; view->load(QUrl("https://test.com/")); connect(view->my_element,…
2
votes
0 answers

Why Qt QWebEngineView working not proper way?

Trying to get work properly QWebEngineView widget. Need to display webpage in kinda embedded browser in my app. From the beginning everything works fine. I test view with google.com url. Widget shows page, I can input, click on buttons for search,…
2
votes
1 answer

Inserting value into password field with a script in JS through a WebEngine in JavaFX

I aim for automatically logging into Google Calendar through a WebEngine in JavaFX and show it in a WebView. But I can't seem to insert a string value into the password field even though it works perfectly with the username field. I have tried…
simonmdsn
  • 21
  • 1
  • 3
2
votes
1 answer

QWebEnginePage print to PDF doesn't print selectable text in the PDF like Google Chrome

I'm trying to print an html document from a QWebEngineView by using the print() method and a QPrinter instance that is required by this method. The problem that I have is that in the resulting PDF I'm not able to select any text that is available.…
cosmarc
  • 562
  • 3
  • 19
2
votes
1 answer

Javafx webengine I can't download and load a page at the same time

I am trying to download a file from a web page and at the same time continue browsing the same web page. public class Main extends Application { String urlBrowser = ""; @Override public void start(final Stage stage) { …
Loandoer
  • 47
  • 1
  • 10
2
votes
1 answer

Qt/QML: WebEngineView adjusting height

I have a bunch of WebEngineViews in a ListView. For example: ListView { model: myModel delegate: Component { Item { WebEngineView { id: myWebView …
Addy
  • 2,414
  • 1
  • 23
  • 43
1
2 3 4 5