Jason Hu
Jason Hu
I would like to see a "smart" scheduler be implemented in future, something can compete with Nest's "learning thermostat". That scheduler should consider the weather forecast, the current temperature, and...
We have an attempt several months ago, see: https://github.com/home-assistant/home-assistant/pull/21104
## Core API documentation We need clearly define the core API, and better document. Otherwise, integration developer will hard to know the core change and which version is compatible for...
@runningman84 I don't think your suggestion is the way HA would follow. The beauty of HA is the asynchronized super fast core and integrations. Move the core-integration communication to inter-process,...
This thread should only discuss how to decouple first two rows. Category | Criteria | Support (Source Code Repo) --- | --- | --- Core | N/A | Home-Assistant organization...
@Hedda please see my previous comment, because HA's design, the event loop and state machine is very easy to be abuse if you have a bad actor installed. So we...
To be honest, I didn't get it. Is an enhancement of `ElementFinder.scrollIntoView()` better? Moreover, I don't think `browser.click()` is better than `ElementFinder.click()`, it looks like an anti-protractor design for me.
1. proposed `browser.click()` As my understanding, your intention is to click some DOM element which is not clickable by define of [WebDriver protocol](https://www.w3.org/TR/webdriver/#element-click). I remembered there was some discussion when...
That is an issue in selenium-webdriver. Here is my patch to resolve it (**only work in protractor/selenium-webdriver 3.6.0**) ```javascript var fs = require('fs'); var httpIndexFile = 'node_modules/selenium-webdriver/http/index.js'; fs.readFile(httpIndexFile, 'utf8', function...
Also you can try my another patch for [chromeDriver persistence connection issue](https://github.com/SeleniumHQ/selenium/issues/5758). I don't have problem for a while after apply both patch ```javascript var chromeFile = 'node_modules/selenium-webdriver/chrome.js'; fs.readFile(chromeFile, 'utf8',...