Questions tagged [cefglue]

CefGlue is a .NET binding for The Chromium Embedded Framework (CEF)

CefGlue is a .NET binding for The Chromium Embedded Framework (CEF). CefGlue uses P/Invoke to call into the CEF unmanaged code.

45 questions
1
vote
0 answers

CEFSharp,CEFGlue,ChromiumFX - What best for a plug-in type of WPF application

For a plug-in type of WPF application, originally planned to use CEFSharp and I hit on a road block due to some known App domain issue. Let me get some expert openion before I take the next steps, what best fits for a plug-in type of WPF…
Shanadas
  • 515
  • 1
  • 6
  • 22
1
vote
0 answers

Redirecting in CefGlue

I'm trying to create a CefResponse from this redirection test Url : http://httpbin.org/redirect/1 It's a 302 redirection to http://httpbin.org/get In my GetResponseHeaders override, I perform the following actions: /// /// Retrieve…
LeMoussel
  • 5,290
  • 12
  • 69
  • 122
1
vote
2 answers

Load html file from disk using CefGlue

I am playing with CefGlue (the .net wrapper around chromium embedded") I need to make some proof of concept so I create my own special html files that contains what I need to test. However I can't find a way to load those files. The…
Mihail Shishkov
  • 14,129
  • 7
  • 48
  • 59
1
vote
1 answer

Access original frame in CefGlue when there is a popup

I Use CEF and use ExecuteJavaScript to call Javascript functions and everything is fine but when user click on something on the page that opens a new window, I lose my original frame. Browser.IsPopup is true and Browser.GetFrameIdentifiers() and…
DaNeSh
  • 1,022
  • 1
  • 14
  • 24
1
vote
1 answer

Cefglue, ChromiumEmbeddedFramework and PDF

currently I use Cefglue but I need to show PDF files, is it possible to add a plugin? I read about pdf.js but how can I use it here?
Sebastian
  • 952
  • 1
  • 14
  • 41
1
vote
1 answer

CEFGlue version API Hash

I have tried to run the example in c# (http://xilium.bitbucket.org/cefglue/) but it says: "CEF Version Hash API is not the same". Although I have downloaded the CEF version(CEF 3.1650.1503) reported here: http://xilium.bitbucket.org/cefglue/ And…
Sven Cornelis
  • 331
  • 3
  • 9
1
vote
0 answers

angularjs $http.GET over SSL request cancelled in embedded CEF and Webkit browsers but works in Chrome/FF

I have a small angular app running in a Cefglue .Net browser control. The browser gets to and loads the app just fine but the XHR GET requests in the background get cancelled and never reach the server. Both the app and the node.js webservice are…
Jacob
  • 505
  • 3
  • 8
  • 23
1
vote
1 answer

Xilium.CefGlue demo project does not show up

I'm trying to run demo project that comes with Xilium.CefGlue repository on Bitbucket. When I run it, it goes into Initialize() method of CefRuntime class, and after(during) libcef.initialize(n_main_args, n_settings, n_app) program just stops. I…
0
votes
0 answers

How to specify a remote debugging port through java code for a cefglue browser process that's contained within .NET application?

Background: I have WPF based desktop application under test. The application has few cefglue based browser pages contained within .NET components. I use WinAppdriver for automating WPF based screens and ChromeDriver to automate the browser pages…
SKN
  • 520
  • 1
  • 5
  • 20
0
votes
1 answer

Cefglue opens a new tab in restored window state

I am using Cefglue of below specification in my app. Whenever I click on a link, and if link opens in new tab it's window state is always in restored state. How to open the tab always in maximized state? My Current Setup :- CEF_VERSION =…
0
votes
1 answer

CefGlue on Linux: Unable to load shared library 'libcef' or one of its dependencies

I want to run a browser on linux based on Xilium.CefGlue.Avalonia. I created a Project according to the Avalonia Officail Page on linux. The Project builds and runs fine. Now when I create a Browser-variable (var browser = new AvaloniaCEfBrowser())…
0
votes
0 answers

Set default Downaload directory in Cefglue + Chromedriver

For CeF+Cefglue using chromedriver.exe i set a download directory (D:), however while downloading any file, It is not automatically downloading in Download directory rather shows "save as" dialog box with default Download Directory…
IT researcher
  • 3,274
  • 17
  • 79
  • 143
0
votes
0 answers

Readering resposnse headers with CefGlue

In my .net project, we would like to embed a web browser and be able to read the header responses that are returned when we navigate to a remote website. I was able to do that using CefSharp but since it does not support .Net Core t is off the…
Itamar Kerbel
  • 2,508
  • 1
  • 22
  • 29
0
votes
1 answer

Loading multiple word addins with CefGlue targetting different version of chromium?

We have a situation with word addins where we try to load our taskpane and use cefglue implementation to show web page. We use cefglue for the same. We just discovered that one of the vendor addins also loads chromium but an older version.…
Kedar K
  • 1
  • 1
0
votes
0 answers

Is there a way to load ReactJs extension inside CefGlue (windows forms c# application)?

We are trying to load reactjs extension in cefglue chromium. We were able to override cefextensionhandler and were able to use loadextension. The extension successfully loaded message is also received but when we goto developer tools, it does not…
Kedar K
  • 1
  • 1