Questions tagged [chromeless]

The “Chromeless” project experiments with the idea of removing the current browser user interface and replacing it with a flexible platform which allows for the creation of new browser UI using standard web technologies such as HTML, CSS and JavaScript

The Chromeless project experiments with the idea of removing the current browser user interface and replacing it with a flexible platform which allows for the creation of a new browser UI using standard web technologies such as HTML, CSS, and JavaScript.

Instead building a whole new platform, the idea is that the web itself should be the platform. That a developer could design the browser using standard web technologies combined with a minimal set of new APIs to interact with the underlying operating system and control the application's user interface. This new functionality is exposed as lightweight conventions on top of the DOM and JavaScript modules exposed via the CommonJS packaging standard.

51 questions
1
vote
0 answers

Setup of Chromeless with AWS Lambda and Serverless

can you help me, guys? I have the problem that I am struggling with creating a serverless service that uses a headless chrome for generating PDFs. My Problem: If I invoke my function with sls invoke -f generate -v the response is a 502 Bad Gateway…
1
vote
1 answer

chromeless is not saving image in correct location

[OSX] [node 8.4.0] [chromeless 1.3.0] I am trying to implement a test using chromeless. I am running the sample in a local instance, with one change of specifying the imagePath to save the image. It is running and saving an image however the image…
Matt
  • 487
  • 1
  • 6
  • 16
1
vote
2 answers

Embed YouTube video on Adobe Air application for Android (without bugs)

I am trying to create an Adobe AIR that plays a YouTube video. However, I have the usual problems mentioned when using StageWebView: If I use hardware acceleration, the video appears strangely. If I don't the initial video thumbnail appears but only…
George
  • 215
  • 3
  • 8
1
vote
1 answer

Controls for Youtube Chromeless Player In Flash

I'm tearing my hair out trying to add controls such as pause and volume to my Chromeless Youtube Player in Flash with actionscript 3, tried working with the reference that google provide but it still doesn't work. Here's what I tried, can anyone…
user1892540
  • 211
  • 1
  • 4
  • 8
1
vote
0 answers

YouTube Analytics for Actionscript 3 YouTube Chromeless Player

I am using the YouTube ActionScript 3.0 API, the Chromeless Player to embed a YouTube video from a YouTube Channel in a Flash Ad. So, once the Ad has been served, I want to know if I will have data in YouTube Analytics for the video embeded. I…
0
votes
1 answer

TubePlayer Plugins Video current time sync with jquery ui slider

Just some resources to help to help me find a solution :) Fully functioning Chromeless player lacking only ui slider synchronisation with video current time : http://jsfiddle.net/GR7Z2/45/ jquery UI slider documentation…
Fiddler
  • 45
  • 6
0
votes
2 answers

jquery play/pause replace text and revert text

what I have tried so far here : http://jsfiddle.net/yusaf/VVEY9/26/ I have a problem with my pause and play replacing and reverting How can I have the .pause hidden on page load when .play is clicked replace the element with the .pause element when…
Yusaf Khaliq
  • 3,333
  • 11
  • 42
  • 82
0
votes
1 answer

Execute Javascript before launching the default XUL page

Have to execute scripts using spidermonkey(jagermonkey) javascript engine availalble within XULRunner.The javascript has some dependent Javascript libraries like requriejs/commonjs etc. RequireJS provides documentation for Rhino/NodeJS javascript…
Yeshvanthni
  • 207
  • 2
  • 15
0
votes
2 answers

Javascript String to C++ char pointer -LPSTR buffer in JSCTypes

I am accessing the DLL from JavaScript using JSCTypes. I have to receive data by passing a character buffer to the following API, __declspec(dllexport) WORD WINAPI receive( LPWORD lpwBufferSize, LPSTR …
Yeshvanthni
  • 207
  • 2
  • 15
0
votes
0 answers

Run Chromeless headless more than once

I have tried to run my Chromeless script headlessly more than once. I start by launching Chrome according to the doc (https://github.com/prisma/chromeless#local-chrome-usage): cd "C:\Program Files (x86)\Google\Chrome\Application" chrome…
Sulli
  • 763
  • 1
  • 11
  • 33
0
votes
2 answers

Headless chrome cli in Production

I will be doing some pdf generation for my application. Currently, my plan is to create HTML using templates and convert them to PDF. The pdf's aren't long. Maximum 3 pages. And approximately we will be making approx 100 docs in a day. I was happy…
0
votes
1 answer

Chromeless : while exists loop syntax

I would like to execute a piece of code as long as an element still exists in the DOM, but I can't find the correct syntax in Chromeless. Something like: while (await chromeless.exists('div#ready')) { //// code } Can I use Chromeless to do…
Sulli
  • 763
  • 1
  • 11
  • 33
0
votes
1 answer

Chromeless - select drop down value

I am using chromeless to change the value of a drop down menu: var dropDownValue="59" const screenshot2 = await chromeless .evaluate((dropDownValue) => { select = document.querySelector('select#category1') …
Sulli
  • 763
  • 1
  • 11
  • 33
0
votes
1 answer

chromeless- Clicking on an element in the next page is not working

On one of my tests I log in and move to the next page. In the next page when I try to click on the profile element with .click nothing seems to be happening. When I use the .exists function it returns false. Why can't chromeless recognize element…
Rotem
  • 1
0
votes
1 answer

Is it possible to access document.body.scrollHeight with the chromeless API?

I would like to capture a fullpage screenshot using the chromless api. (Fullpage as in everything below the fold, not just the current viewport. In order to do this, I think one would calculate the height of the webpage (using…
0xPingo
  • 2,047
  • 4
  • 19
  • 43