René

Results 188 comments of René

@martamedovova-ext91522 What do you need very soon? @aaltat was talking about the Buffer. I doubt we can do Buffer. Do you need directory or multiple files soon? RoboCon in Helsinki...

Fix would be to calculate the top & left with the width. ```typescript d.style.top = `calc(${rect.top}px - ${options?.wdt ?? '1px'})`; d.style.left = `calc(${rect.left}px - ${options?.wdt ?? '1px'})`; ``` ```typescript async...

Was caused by `box-sizing` being set globally on some pages. Now it is always `content-box` which leads to outside border.

I am fine with a system wide default for precision, but there should be at least a possibility to either disable that behavior and show the raw value again, or...

This requires to update the js_keyword_interface, so that context (opt browser) is also available in the js keyword. if trace is startet after page, many resources are missing, I.e. css...

This is now possible as JS Plugins. ```javascript exports.__esModule = true; exports.startTracing = startTracing exports.stopTracing = stopTracing async function startTracing(context) { await context.tracing.start({screenshots: false, snapshots: false}); } async function stopTracing(tracefile,...

I have my doubts that we are mixing here two different things. At the moment VAR is creating and assigning a variable in a specific scope. Changing/elevating the scope, is...

PS: Setting scope already now works with `VAR` by just assigning the local variable to the scoped one: ```robotframework *** TestCases *** Test with overwriting/setting value ${time} Get Time VAR...

I am really cautious about adding more arguments to so many keywords. I would really want to take some time to discuss these. the problem is always that reverting these...

To add a timeout to every assertion keyword, we would probably need to wrap the actual keyword and the `return verify_assertion(value, assertion_operator, assertion_expected, f"Property {property}", message, formatter)` with an assertion...