Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

46
node_modules/protractor/bin/elementexplorer.js generated vendored Executable file
View file

@ -0,0 +1,46 @@
#!/usr/bin/env node
/**
* This is an explorer to help get the right element locators, and test out what
* Protractor commands will do on your site without running a full test suite.
*
* This beta version only uses the Chrome browser.
*
* Usage:
*
* Expects a selenium standalone server to be running at http://localhost:4444
* from protractor directory, run with:
*
* ./bin/elementexplorer.js <urL>
*
* This will load up the URL on webdriver and put the terminal into a REPL loop.
* You will see a > prompt. The `browser`, `element` and `protractor` variables
* will be available. Enter a command such as:
*
* > element(by.id('foobar')).getText()
*
* or
*
* > browser.get('http://www.angularjs.org')
*
* try just
*
* > browser
*
* to get a list of functions you can call.
*
* Typing tab at a blank prompt will fill in a suggestion for finding
* elements.
*/
console.log('Please use "protractor [configFile] [options] --elementExplorer"' +
' for full functionality\n');
if (process.argv.length > 3) {
console.log('usage: elementexplorer.js [url]');
process.exit(1);
} else if (process.argv.length === 3) {
process.argv[2] = ('--baseUrl=' + process.argv[2]);
}
process.argv.push('--elementExplorer');
require('../built/cli.js');

5
node_modules/protractor/bin/protractor generated vendored Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env node
process.env.NODE_ENV = process.env.NODE_ENV || 'test';
require('../built/cli.js');

3
node_modules/protractor/bin/webdriver-manager generated vendored Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env node
require('webdriver-manager');