Teppo Koskinen
Teppo Koskinen
Another vote for improving HTTP library API. E.g. uploading files is too complicated as you typically must: 1. Get binary file 2. Create file dictionary 3. Create headers dictionary 4....
Good point! It's worth considering if incognito mode is so a common use case that it deserves dedicated argument or not.
Consider whether it is more productive to fail the keyword or implicitly create the missing file. In the use cases that I have faced, it would have been easier to...
I made a separate issue about the question 2 https://github.com/robocorp/rpaframework/issues/266 This issue should focus in Q1.
RPA.JSON library has keywords: ``` Convert JSON to string Convert string to JSON ``` Those should do the trick without evaluating python: ``` Producer # create a table for testing...
That has no effect. The funny thing is that if I remove Update call from WaitClick then XAxis call will work (Update and WaitClick are not even called).
...also without optimizer it seems to work
I try to get the pointer to the implicit variable that holds the return value. Seems that I can assign to it, but I cannot get the address.
I understand that this is a design choice, but I would be happy if source code constant expressions were folded at compile time to literals without complying with runtime rules.
Even fancier way would be to allow renaming e.g. ``` DIM zp AS BYTE FAST SUB SomeTimeCriticalRoutine(Value AS BYTE @zp) STATIC 'Some fine code END SUB ``` ...but that might...