This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /your/project/path | |
| npx cypress run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /your/project/path | |
| npx cypress open |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /your/project/path | |
| npm install cypress --save-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe('home page tests', () => { | |
| it('should open home page', () => { | |
| cy.visit('https://tevpro.com'); | |
| cy.get("h1").should( | |
| "have.text", | |
| "Your trusted technology partner for delivering enterprise solutions" | |
| ); | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| sys.path.append('%(script_path)s\custom' % {'script_path': fdmContext["SCRIPTSDIR"]}) | |
| #Import library | |
| import JunkieFramework as jframe | |
| reload(jframe) | |
| #Init framework | |
| jf = jframe.Core(context=fdmContext, api=fdmAPI) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: ExecuteRemoteBatch.bat | |
| wmic /node:"fdmeeserver" process call create "cmd.exe /C D:\Oracle\Middleware\user_projects\epmsystem1\FinancialDataQuality\runbatch.bat admin -f:passwordfile %1" | |
| @ECHO OFF | |
| ECHO Your data load has been scheduled. You will receive email updates on its status. |