Tobias Bocanegra
Tobias Bocanegra
I see the same behavior. on a device that does not support OpenGL ES 2.0, I get a black screenshot (see issue #88), on a newer device I never get...
I agree with @justinedelson, using a crippled version of the data-sly attributes in some CSS-ish way is totally counter intuitive and I don't think that anyone would understand how to...
I think it should be the normal javascript object initializer, allowing unquoted keys, and references to other variables. eg: ``` ${{key1:'value1', 'key2':'value2'}} // or ``` as a workaround, you can...
Hi Alfusainey, > one change to the json-string: i now encode jcr properties as json objects instead of simple name:value(s) pairs while I see that using objects for properties is...
Hi Alfusainey, rethinking this, we cannot change the format of the JSON for davex, as other clients also use it.
the recent change to make the non-partial mock the default was a bit of a surprise (and broke many of our tests :-). I think that most mocking needs are...
> I'm not aware of any module mocking library that defaults to a partial mock. yes, proxyquire. and I think, many users that switch to ESM, replace proxyquire with esmock...
> Based on the discussion, my sense is to force the user to import one of these, I don't think that's the gist of this thread.... I think most are...
hi @Junyan , it seems that newer versions of pupeteer now hide the `browser._connection` field, as it is private. do you know a workaroud? I could hack it with: ```js...
currently, I need to hack it like this: ```js const drawing = new Drawing(imageData, { floating: false }); // hack to get document properties to set alt text if (node.title...