Jon

Results 13 comments of Jon

From the documentation: **Text fields** By default all keyboard events will not fire if you are inside of a textarea, input, or select to prevent undesirable things from happening. If...

Did anyone find a workaround to this? I seem to be having the same problem, albeit it's running ```js await driver.wait(until.elementLocated(By.id(`accordionPersonalSavedReportAnchor`)), configuration.timeout); ``` for me... I tried changing the `.suites[0].timeout`...

Okay. Thanks for the explanation. So, I suppose more generally, array access is only allowed directly on Smarty variables? Do you think this would be something that could/should be added?...

Take a look at `MagicMethodsTrait.php` it's expecting you to use the magic methods to get values... ```php foreach ($items as $calItem) { echo $calItem->getDateTimeStamp() . "\n"; echo $calItem->getLocation() . "\n";...

Finally stumbled upon the setting I wanted. :) If you don't want the fancy classes with protected properties, getters, setters etc, just set the `classmap` option to null or similar....

I would be interested in implementing this. I assumed I simply needed to add & slightly change the same code that "PTR" uses, which seems to be true. I don't...

I think you need `getRecurrenceId()`

I got it to work though I'm not sure what all the different settings on the Azure side were needed. In my case, I'm using EWS to read calendar events...

You forgot 1 part to your $request: It should be: ```php $request = [ 'Mailbox' => [ 'Address' => '[email protected]' ] ]; ```

**TL;DR:** the "currency" format reader for Ods is broken, but I'm not sure there's an easy way to fix it because the number of decimals is not necessarily consistent. *Ps....