Questions tagged [embedded-browser]

A browser which can be embedded into your application.

Embedded browser can be a framework, which provides full control over the browser like 1. launch using code. 2. set url using code. 3. control the back, refresh, forward, stop buttons using code.

64 questions
3
votes
1 answer

What is the correct way to isolate cookies/users in Chromium embedded browser?

I have searched for days with no solution in sight. I need multiple Chromium instances in one single application and each of this instance logins to the same site with different account (ex: outlook.com). I tried this solution but there's no…
3
votes
1 answer

JavaScript: Detect Mobile Embedded Browsers (Captive Portal)

I have a MikroTik HotSpot. In mobile browsers (Android, iOS, WP), when a user is connecting to HotSpot, the captive portal browser (or embedded browser) pops up. If we want to disable this embedded browser we have to open (walled garden) some URLs…
Vahid
  • 3,384
  • 2
  • 35
  • 69
3
votes
0 answers

Requests for touch icons from android

Does anyone know the logical flow and timing behind requests for apple-touch-icon.png by android apps that use an embedded webkit browser? What I seem to be seeing (but am having trouble verifying) is that a GET request for the touch icon is made…
Ed_
  • 18,798
  • 8
  • 45
  • 71
2
votes
2 answers

Using Webkit rendering for java based Desktop applications

Is it possible to use Webkit for rendering on a desktop application? I have looked at CEF but it's not for Java. Is there any toolkit available in java for this?
Kathir
  • 6,136
  • 8
  • 36
  • 67
2
votes
1 answer

How does facebook detects webview or embedded browser

How does facebook detects this type of browsers ? Is there any way to tricked that and make it as a native web browser such as a js code or something elese ? for your account security, logging in to Facebook from an embedded browser is disabled.…
Ghyath Darwish
  • 2,614
  • 4
  • 15
  • 31
2
votes
0 answers

Embedded browser in Python Program on Windows

What other options do I have to embed a browser in Python Program? I know about: CefPython GtkMozEmbeded
ThousandSteps
  • 67
  • 1
  • 7
2
votes
0 answers

How do I expose embedded webkit/webview app on OSX for Selenium test automation?

I'm looking for a way to expose embedded view browser for selenium automation on Mac OSX. On Windows we have exposed CEF using settings.remote_debugging_port = 2012. Is there any similar way to do the same on Webview/Mac OSX?
maxx777
  • 1,320
  • 1
  • 20
  • 37
2
votes
1 answer

How to force cache to be reused after app restart - GeckoFX / xulRunner

I'm new to embedded browsers, I admit, but I've got a GeckoFX v33 control working and hosted in a WPF application. Browsing and caching is working during a browsing session. However, upon application restart the cache is lost (or ignored) and all…
Dale
  • 8,772
  • 1
  • 15
  • 15
2
votes
5 answers

watin attachto Embedded browser

I have a c# windows form project using watin. I would love to attach to the web-browser control on a form, is this possible? Is there any sample code on how to attach to the embedded web-browser control. //Looks like this only works for actual…
MHop
  • 3,053
  • 3
  • 17
  • 13
2
votes
0 answers

Java set location to WebView after loadContent to fetch relative links

I'm using WebView.getEngine().loadContent(String) to set content of an embedded Browser in my JavaFx Program but the HTML page has some relative links. which fails to load as the content is not linked to any location. Can any body help how to fix…
hasan
  • 966
  • 2
  • 13
  • 40
2
votes
0 answers

Embed basic WebKit + V8 in my app

I want a very basic HTML/CSS/JS renderer embedded in my app using WebKit and preferably V8. All I need is to always render one page and possibly make network and local requests (load JSON/msgpack). I don't need prefetch, tabs, omnibox, profiles and…
Dmitry Gladkov
  • 1,325
  • 1
  • 12
  • 24
1
vote
2 answers

Access to SMS and browser content tombstoning

WP7 newbie here.. In my application, I am using embedded web browser control to load an external web page. I have a PIN based validation step in that application, which involves 1) User Leaving the current application, (which has a external web…
1
vote
5 answers

How do I get jQuery working on the ANT Galio browser?

I'm developing a web application and would like to use the jQuery library to ease development. This application will be run on an embedded device running the ANT Galio browser. The User-Agent string for the device I'm testing against is: Mozilla/5.0…
Redwood
  • 66,744
  • 41
  • 126
  • 187
1
vote
2 answers

How do I troubleshoot jQuery not working on a page loaded on an embedded device's browser?

I am developing a web application that is intended to run solely on an embedded device with its own web browser. This device browser is represented as being similar to (but not an exact match for) Firefox in the documentation. I would like to use…
Redwood
  • 66,744
  • 41
  • 126
  • 187
1
vote
1 answer

Change auto_zooming parameter at runtime on cefpython

I have a Flask app that render some page on localhost:3000. To display correctly this page on every computer i use chromium browser (Basically WXpython example from cefpython3 with minor changes:…