Michał Lipok

Results 163 comments of Michał Lipok

So we have confirmed issue. Are you looking on this ? I be able in next few hours.

Working on.

some findings: https://bugs.chromium.org/p/chromedriver/issues/list?q=frame&can=2&sort=-id https://bugs.chromium.org/p/chromedriver/issues/detail?id=4465&q=frame&can=2&sort=-id https://bugs.chromium.org/p/chromedriver/issues/detail?id=4509&q=frame&can=2&sort=-id https://bugs.chromium.org/p/chromedriver/issues/detail?id=4513&q=frame&can=2&sort=-id

I already checked: Upcoming version: 115.0.5790.110 (r1148114) https://googlechromelabs.github.io/chrome-for-testing/#stable https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/115.0.5790.110/win32/chromedriver-win32.zip still the same issue

It looks like when I use `$__WDVERSION = "0.8.1"` Together with current chromedriver.exe `DemoFrames` works fine.

it looks that `DemoFrames` works fine with: https://stackoverflow.com/questions/19669786/check-if-element-is-visible-in-dom and had issues on: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_iframe https://www.tutorialspoint.com/html/html_frames.htm#

I was testing also other for example au3WebDriver-0.11.0 was first with `_WD_FrameList` so each older version has old `DemoFrames`

> Even more ideal would be to eliminate `_WD_FrameList` and use `_WD_Window` commands instead. working on

``` __WD_Post: URL=HTTP://127.0.0.1:9515/session/12e26bc8a5b17bb912c5cd72a5af6df5/execute/sync; Data={"script":"function FrameAttributes(FrameIDX) { let nodes = document.querySelectorAll('iframe'); if (nodes.length) { return nodes[FrameIDX].outerHTML; } else { return window.frames[FrameIDX].frameElement.outerHTML; } }; return FrameAttributes(22);", "args":[]} __WD_Post ==> Javascript Exception [23]...

Yes. I notice `no such frame` _WD_FrameEnter is not able to change frames. as for now I found quick solution in this function: https://github.com/Danp2/au3WebDriver/blob/42dda7d9a9e78b3c7cc2d419b0e84eaf1335f6a8/wd_helper.au3#L848-L863 just modify this line: https://github.com/Danp2/au3WebDriver/blob/42dda7d9a9e78b3c7cc2d419b0e84eaf1335f6a8/wd_helper.au3#L863 ```autoit...