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
2
votes
1 answer

Modest Branding with Chromeless Player

I have built a chromeless player for several websites I run based on the following logic: 1) I create a standard embed as a fallback in the event the chromeless version won't load. This enables ios devices to see the video just fine. 2) I reference…
brad
  • 21
  • 3
2
votes
1 answer

Chromeless - get all images src from a webpage

I'm trying to get the src values for all img tags in an HTML page using Chromeless. My current implementation is something like this: async function run() { const chromeless = new Chromeless(); let url = 'http://someurl/somepath.html'; …
Pragun
  • 1,123
  • 8
  • 20
2
votes
1 answer

Chromeless - click on browser popup

I use chromeless to fill in and validate a form. The form generates a validation popup when I click on the submit button: How do I click on this popup and validate the form?
Sulli
  • 763
  • 1
  • 11
  • 33
2
votes
2 answers

Chromeless - can not click input submit button

I am trying with chromeless to click on a submit button whose code is: I have tried const screenshot = await chromeless .click('input#submitbutton') and const…
Sulli
  • 763
  • 1
  • 11
  • 33
2
votes
2 answers

How to select an option from a dropdown list using chromeless API?

I am using chromeless API (https://github.com/graphcool/chromeless) How can I select an option from a dropdown list? Specifically I want to select last option having value="other". My HTML is:
Hassan Ajaz
  • 613
  • 8
  • 15
2
votes
0 answers

Unknown command: protocol when using Chromeless on AWS lambda

Could someone help me with this, I'm running an AWS Lambda using Chromeless and Serverless, I keep getting the same error. My code: import Chromeless from 'chromeless' export default async () => { const chromeless = new Chromeless({ remote:…
2
votes
0 answers

Does setting a --proxy-server header work in chromeless?

I'm trying to set the proxy server for a chromeless implementation on Lambda using the setExtraHTTPHeaders setter like: await chromeless .setExtraHTTPHeaders({ '--proxy-server': 'xxx.xxx.xx.xx:80' …
Jeff Borden
  • 1,369
  • 1
  • 19
  • 30
2
votes
1 answer

Youtube Player API Difference (Chromeless vs IFrame) - Which is better?

So I have scoured the web on information on how to embed the Youtube players but actual detailed tutorials seem extremely sparse or completely non existent. In addition, although there is documentation found on the google site it seems to be…
2
votes
2 answers

Simple Chromeless Youtube Embed - How?

Question: Please, can someone explain exactly, clearly, how I can embed a simple Chromeless Youtube player in my page, and control the source of that player dynamically? Question Explained: I'm working with a page where I need to embed a youtube…
user2700923
1
vote
1 answer

Iframe cross domain communication and chromeless domain

I have chromeless application with some privileged JavaScript code interacting with the system.Now I want to mash-up the privileged JavaScript (jsctypes) with an application hosted in the server. The remote application will be loaded in an Iframe…
Yeshvanthni
  • 207
  • 2
  • 15
1
vote
1 answer

move chromeless windowedapplication on drag in flex 4

I have implemented a chromeless windowedapplication in flex 4. But doing so i noticed that all the maximize, minimize and even the ability to drag the window around is gone. I need the ability to drag the window around. I have done a lot of googling…
Nishant
  • 83
  • 8
1
vote
1 answer

Prevent target="_top" from taking over UI in Mozilla Chromeless

I know a fix for this is coming soon; I'm just hoping to get a head start. Chromeless is basically Firefox without it's UI. You can build your own UI using HTML, CSS, and javascript. Tabs/windows are loaded in iframes. The main frame (the browser…
David Murdoch
  • 87,823
  • 39
  • 148
  • 191
1
vote
0 answers

Chromeless - click(selector) doesn't always work

After creating new chromeless object: const chromeless = new Chromeless( { implicitWait: true, scrollBeforeClick: true }) When I use chromeless.click(selector) on some element in the DOM, for example: await…
N. David
  • 11
  • 1
1
vote
1 answer

Get an empty webpage when running Chromeless on AWS Lambda

I want to use the Node.js package Chromeless on a AWS Lambda function. I use two packages: chromless and serverless-chrome On my local machine my test script runs fine. When I deploy it to Lambda I get an empty result for .html() The result is no…
Schmidko
  • 690
  • 1
  • 7
  • 17
1
vote
1 answer

Try catch with chromless inactivity

Using chromeless to run tests every 5 minutes to verify I can log into a website and that content is available. Code looks like this: const { Chromeless } = require('chromeless') async function run() { const chromeless = new Chromeless({ …
maafk
  • 6,176
  • 5
  • 35
  • 58