I am recording the user flow in Cypress with cypress studio, but got an error when finishing recording. Do you know what is wrong?
ENOENT: no such file or directory, open '__all'
/* ==== Generated with Cypress Studio ==== */
cy.get('.Navbar_menu__w7Wyh > :nth-child(2)').click();
cy.get('[type="text"]').clear();
cy.get('[type="text"]').type('xibar73093#arpizol.com');
cy.get('[type="password"]').clear();
cy.get('[type="password"]').type('xxx');
cy.get('.LoginAndRegistration_registerBtn__2ye_o').click();
cy.get('[href="/hu/dashboard"] > .MenuItem_title__9eH_7 > span').click();
cy.get('[href="/hu/dashboard/organizations/A406B663-41B8-4904-B51F-44E62FDA2970"]').click();
/* ==== End Cypress Studio ==== */
Related
I follow this instruction to create an offline installer for Visual Studio 2019.
I rerun the following cmd several times already:
vs_enterprise.exe --layout c:\vslayout --lang en-US
But after a long time of verifying packages, it keeps giving me the error:
...
Total packages to download: 1
Starting 'UpdateLayout' operation
Error: Package 'Linux.GCC.arm_none_eabi,version=9.3.1' failed to download from '
https://aka.ms/AA9z5w0'. WebClient download failed: The request was aborted: Cou
ld not create SSL/TLS secure channel.. Bits download failed: File not found.. Wi
nInet download failed: Function: InternetOpenUrl, HR: -2147012867, Message: Unkn
own error 12029, Signature: PackageId=Linux.GCC.arm_none_eabi;PackageAction=Down
loadPackage;ReturnCode=0x80131500
UpdateLayout progress: 99.00%
Error: Setup completed with errors.
Error: One or more errors occurred.
Press any key to continue...
I try downloading the Linux.GCC.arm_none_eabi with cmd:
vs_Enterprise.exe --layout c:\test --add Linux.GCC.arm_none_eabi --lang en-US
But it gave me the error:
Download of 'https://aka.ms/vs/16/release/channel' succeeded using engine 'WebCl
ient'
Download of 'https://download.visualstudio.microsoft.com/download/pr/9efbe138-ff
42-4deb-95c9-1d78cdc1f98b/356b789dfa97d11956dc1a1c1ec3abad20ef3ca4d4cd34fae9df18
489b34d6aa/VisualStudio.vsman' succeeded using engine 'WebClient'
Catalog load operation correlation: {"id":"f4ca2719-dc4d-46c0-b458-a3169a2d57db"
}
Layout operation correlation: {"id":"7780b16c-7775-4ac1-92b2-8a47537f7784"}
Planning 'Layout' operation
Error: The package 'Linux.GCC.arm_none_eabi' is not recognized.
Error: Failed to plan for Layout.
Error: Setup completed with errors.
Error: The package 'Linux.GCC.arm_none_eabi' is not recognized.
Press any key to continue...
But if I enter the url https://aka.ms/AA9z5w0, I can download the file gcc-arm-none-eabi-9-2020-q2-update-win32.zip so the link does work, but how can I add the final missing piece to my offline installer?
My question is how can I solve this error so that I can have the complete offline installer?
My current solution is create the folder c:\vslayout\Linux.GCC.arm_none_eabi,version=9.3.1 and put the file gcc-arm-none-eabi-9-2020-q2-update-win32.zip in it. But I wonder if this is the right way to solve it.
Update: My current solution works, after I manually download and put it into the offline installer, I re-run the cmd to verify the packages and it give me the OK result:
Total packages to download: 0
Starting 'UpdateLayout' operation
Setup completed successfully.
Press any key to continue...
The error said:
Error: Package 'Linux.GCC.arm_none_eabi,version=9.3.1' failed to download from '
https://aka.ms/AA9z5w0'.
So in Firefox browser, enter the url https://aka.ms/AA9z5w0, then I can download the file gcc-arm-none-eabi-9-2020-q2-update-win32.zip
Create the folder c:\vslayout\Linux.GCC.arm_none_eabi,version=9.3.1 and put the file gcc-arm-none-eabi-9-2020-q2-update-win32.zip in it.
After I manually download and put it into the offline installer, I re-run the cmd vs_enterprise.exe --layout c:\vslayout --lang en-US to verify the packages and it gives me the OK result:
Total packages to download: 0
Starting 'UpdateLayout' operation
Setup completed successfully.
Press any key to continue...
Success!!!
I checked your command line(vs_enterprise.exe --layout c:\vslayout --lang en-US) and it is good, without any error. Not sure, but the prompt error may be caused by Microsoft Server side or CDN provider.
In my mind there were some similar issues reported before, which also mentioned "Could not create SSL/TLS secure channel…" or "Package XXXXX failed to download from XXXXX", like this thread, and this thread.
The solution you mentioned, maybe not a really "correct" solution, as this maybe a potential issue, but as you downloaded the package from the prompt link and it passed the verification, the installation should be good and complete.
Your solution is helpful and may benefit other forum members who meet the same/similar issue, so I just make a
summary:
Create a folder and name it with the name that error message mentioned, and then download the file/package from the link which error message prompt. Put it to this folder. Verify the installation by using command --verify.
{ Error: EPERM: operation not permitted, open 'C:\Users\Vivek Sharma\apps\testAp
p\www\assets\imgs\Thumbs.db’
**errno: -4048,
code: ‘EPERM’,
syscall: ‘open’,**
path: ‘C:\Users\Vivek Sharma\apps\testApp\www\assets\imgs\Thumbs.db’ }
[03:09:32] deeplinks started …
[03:09:32] deeplinks finished in 110 ms
[03:09:32] ngc started …
[03:09:59] ngc finished in 26.71 s
[03:09:59] preprocess started …
[03:09:59] preprocess finished in 3 ms
[03:09:59] webpack started …
[03:11:33] webpack finished in 94.64 s
[03:11:33] uglify started …
[03:11:33] sass started …
Error: EPERM: operation not permitted, open ‘C:\Users\Vivek Sharma\apps\testApp
www\assets\imgs\Thumbs.db’
(node:14288) PromiseRejectionHandledWarning: Promise rejection was handled async
hronously (rejection id: 1)
[03:11:36] sass finished in 2.99 s
[03:11:36] cleancss started …
[03:11:40] cleancss finished in 3.62 s
[03:12:08] uglify finished in 34.76 s
---------------------END-----------------------------------
This error occurs when trying to build apk. using ionic cordova build android --release --prod in windows cmd
ionic v-3.19.0
cordova -v-8.0.0
node -v-8.8.3
npm -v-5.3.0
WINDOWS 8.1 64 bit.
full control is given to the system.
enter image description here
please help
Thank you, Developers, for responding to my query. I have resolved the issue. The problem was, Windows keeps building Thumbnails and stores them as Thumbs.db on the system.This prevents the system from copying, moving, deleting or renaming a folder. I prevented further caching of thumbnails and deleted the Thumbs.db from the project folder.
This is the procedure if anyone else comes across this problem:
1. Disabling Thumbs.db:
https://www.nextofwindows.com/what-is-thumbs-db-files-and-how-to-disable-and-remove-them
2. Next, to remove Thumbs.db:
https://www.youtube.com/watch?v=N7MgnYCMvHE
This will do the job. :)
Seems like your folder name has a white space try to rename the folder name and try to run it again.
Existing Path:
C:\Users\Vivek Sharma\apps\testAp p\www\assets\imgs\Thumbs.db
Change Path like this:
C:\Users\VivekSharma\apps\testApp\www\assets\imgs\Thumbs.db
You could see whitespace in between Vivek Sharma change it to VivekSharma For more info check this out:
Error: EPERM: operation not permitted
I just had to change my HDD. So I installed a version of Windows 10 Education on my computer, and now I'm trying to install Visual studio 2017 community/enterprise ( tried both ). After running the installer which was downloaded from the official website it doesn't start the installation, I just see for a tiny amount of time a small window pop but then it instantly shuts. What could be the reason for this behavior and how to fix this problem?
Edit: I can install other software, I managed to install a few other programs without a problem, I notice this behavior only with Visual studio and additionally .NET Framework installer.
Edit2:
I found this in my temp folder :
[4/20/2017, 11:30:37] === Logging started: 2017/04/20 11:30:37 ===
[4/20/2017, 11:30:37] [4/20/2017, 11:30:38] --- logging level: standard ---
[4/20/2017, 11:30:38] Directory 'C:\Users\2D94~1\AppData\Local\Temp\931f7233a5c56697278d79b1\' has been selected for file extraction
[4/20/2017, 11:30:38] Extracting files to: C:\Users\2D94~1\AppData\Local\Temp\931f7233a5c56697278d79b1\
[4/20/2017, 11:30:38] Error 0x8007002a: Failed to extract all files out of box container #0.
[4/20/2017, 11:30:38] Error 0x8007002a: Failed to extract
[4/20/2017, 11:30:38] Error 0x8007013d: Failed to get error string from error: 0x8007002a
[4/20/2017, 11:30:38] The entire Box execution exiting with result code: 0x8007002a
[4/20/2017, 11:30:38] Launched extracted application exiting with result code: 0x0
[4/20/2017, 11:30:38] === Logging stopped: 2017/04/20 11:30:38 ===
Edit 3: THANKS MICROSOFT you really screwed me up huh.
Edit 4: After full Windows reinstall with the latest version still getting this error.
Edit 5: Changed windows version from education to professional and it works!
Had the same issue. I was running installer from my /Download folder.
Try move the installer to D: drive, it helped me.
Regards
My VS Code integrated terminal is only toggling up for a second then disappearing with the command Ctrl+`(Tried to change it - still not working :)),
showing the Integrated terminal exited with code 1 error.
Any ideas for fixing it?
I had the same problem on Windows 10. The problem was that I had VSCode running in compatibility mode (Windows 8). If that is that case for you, just uncheck "Run this program in compatibility mode for" checkbox in Compatibility tab of the VSCode properties, click in OK and restart VSCode.
I had the same problem just a few minutes ago, in my case this error was a path consequence, my windows user folder has an accent (c:/users/josé /..) , so, just try to move your project into another folder, like "C:/projects".
Current Solution is using a none-English named Folder as project Folder.
Here is my research:
default value "terminal.integrated.shell.windows": "C:\\WINDOWS\\system32\\cmd.exe"
Following is the debug info in VScode:
terminalInstance.ts:55 Integrated terminal exited with code 1
(anonymous function) # terminalInstance.ts:55
emitTwo # events.js:100
emit # events.js:185
ChildProcess._handle.onexit # internal/child_process.js:204
Following is debug info in Atom:
C:\Users\mzvast\AppData\Local\atom\app-1.9.1\resources\app.asar\src\task.js:52
Unable to start terminal process. Win32 error code: 267 Error: Unable
to start terminal process. Win32 error code: 267
at Error (native)
at Server. (C:\Users\mzvast.atom\packages\platformio-ide-terminal\node_modules\pty.js\lib\pty_win.js:67:9)
at emitOne (events.js:90:13)
at Server.emit (events.js:182:7)
at Pipe.onconnection (net.js:1439:8)
(anonymous function) #C:\Users\mzvast\AppData\Local\atom\app-1.9.1\resources\app.asar\src\task.js:52
(anonymous function) #C:\Users\mzvast\AppData\Local\atom\app-1.9.1\resources\app.asar\src\task.js:126
module.exports.Emitter.simpleDispatch # C:\Users\mzvast\AppData\Local\atom\app-1.9.1\resources\app.asar\node_modules\event-kit\lib\emitter.…:25
module.exports.Emitter.emit # C:\Users\mzvast\AppData\Local\atom\app-1.9.1\resources\app.asar\node_modules\event-kit\lib\emitter.…:125
(anonymous function) # C:\Users\mzvast\AppData\Local\atom\app-1.9.1\resources\app.asar\src\task.js:78emitTwo
# events.js:100
emit # events.js:185
handleMessage # internal/child_process.js:718
channel.onread # internal/child_process.js:444
The win32 error code 267 seem to be,according to microsoft:
ERROR_DIRECTORY
267 (0x10B)
The directory name is invalid.
Close vscode, create a new folder somewhere on your pc, but not inside the directory which was previously opened with vscode. Open this new directory with vscode and then try opening your terminal. If your terminal opens, then the problem was with your previous directory. This happened with me, the directory didn't exist but was listed in my file explorer. Now, whenever your start your terminal, it will start with the same directory which is opened in your vscode. In this case, the directory didn't exist or had same issues, hence the problem.
Important!!
First, try this method.
Create a dummy directory anywhere on your PC, except the present directory that
is open in your Explorer.
Save any thing that is open.
Open the dummy directory that you created File > Open a folder > 'Your Folder'
Try opening integrated terminal using View > Terminal.
If this works, then there's a problem with the directory. Create a new directory and migrate all files to that directory.
If not, then try changing the settings listed here in other answers or check whether VSCode is running in Compatibility Mode or not.
I had the same Exit code 1.. And found the solution as below..
Open the settings on Visual Studio Code and click Edit in settings.json as marked:
Change the terminal.integrated.shell.windows settings on the red marked line as you see:
just uncheck "Run this program in compatibility mode for" checkbox in Compatibility tab of the VSCode properties, click in OK and apply and restart VSCode.
I've a project in Ember cli and I receive this error.
I can't run in windows cause thumbs.db file, I don't see any Thumbs.db file (Hidden folders are showed) and I run in administrator mode. Any clue?
Follow stack trace error:
EPERM: operation not permitted, open 'C:\Users\Filipe\Documents\GitHub\front-admin\dist\assets\images\Thumbs.db'
Error: EPERM: operation not permitted, open 'folderToProject\dist\assets\images\Thumbs.db'
at Error (native)
at Object.fs.openSync (fs.js:549:18)
at Object.fs.writeFileSync (fs.js:1156:15)
at TreeSync.<anonymous> (C:\Users\Filipe\Documents\GitHub\front-admin\node_modules\tree-sync\index.js:61:19)
at Array.forEach (native)
at TreeSync.sync (C:\Users\Filipe\Documents\GitHub\front-admin\node_modules\tree-sync\index.js:50:14)
at Class.module.exports.Task.extend.copyToOutputPath (C:\Users\Filipe\Documents\GitHub\front-admin\node_modules\ember-cli\lib\models\builder.js:124:10)
at C:\Users\Filipe\Documents\GitHub\front-admin\node_modules\ember-cli\lib\models\builder.js:132:21
at lib$rsvp$$internal$$tryCatch (C:\Users\Filipe\Documents\GitHub\front-admin\node_modules\rsvp\dist\rsvp.js:493:16)
at lib$rsvp$$internal$$invokeCallback (C:\Users\Filipe\Documents\GitHub\front-admin\node_modules\rsvp\dist\rsvp.js:505:17)
I already clean temp folder
First thing I would try is to clear the temp directory in the application's folder.