jeffb-sfdc
jeffb-sfdc
@1eandro I'm on support rotation next week and will revisit this. In the mean time, since I had previously reported that I wasn't able to reproduce the issue, could you...
Thanks for the info @1eandro . I was able to reproduce the issue and will be work on a fix for this.
@1eandro I thought I'd post an update here. I have a fix and it will be going in soon.
@NuAgeDan What are the steps needed to reproduce this issue?
@christian-bromann the issue is in `openContextMenu()`, src/pageobjects/utils.ts, lines 201-202: ``` await this.elem.click({ button: 2 }) return new ContextMenu(this.locatorMap).wait() ``` The CSS it's looking for is `.monaco-menu-container`. I changed the code...
@christian-bromann the issue might be that the context menu is a native UI control. The menu for the Output view's context menu is having the same problem (OutputView's `openContextMenu()` is...
I've reproduced the issue, and I am in talks with the CLI team to determine what the expected behavior is.
@paolinAGE , I just ran through this, and it worked for me. I have a few questions for you... 1) When I run the "SFDX: Create Project" command, a popup...
One workaround I did was to bypass `getText()` and to get the text the brute force way: set focus to the area, select all, then copy, then use clipboardy to...
@christian-bromann yes, if I remember correctly, the issue is that in `openItem()`, the tree is walked and expended with: ``` await item?.expand(); ``` When expanded, the first item is now...