This file contains 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
private void enableHTML5AppCache() { | |
webView.getSettings().setDomStorageEnabled(true); | |
// Set cache size to 8 mb by default. should be more than enough | |
webView.getSettings().setAppCacheMaxSize(1024*1024*8); | |
// This next one is crazy. It's the DEFAULT location for your app's cache | |
// But it didn't work for me without this line | |
webView.getSettings().setAppCachePath("/data/data/"+ getPackageName() +"/cache"); |
This file contains 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
C:\MY-HOME\AUTOMATIONPROJECTS\WEBDRIVERIOPROJECTS\WDIO | |
├───.idea | |
├───node_modules | |
│ ├───.bin | |
│ ├───amdefine | |
│ ├───ansi-escapes | |
│ ├───ansi-regex | |
│ ├───ansi-styles | |
│ ├───any-promise | |
│ │ └───register |
This file contains 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
exports.config = { | |
// | |
// ================== | |
// Specify Test Files | |
// ================== | |
// Define which test specs should run. The pattern is relative to the directory | |
// from which `wdio` was called. Notice that, if you are calling `wdio` from an | |
// NPM script (see https://docs.npmjs.com/cli/run-script) then the current working | |
// directory is where your package.json resides, so `wdio` will be called from there. |
This file contains 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
0 info it worked if it ends with ok | |
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe', | |
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
1 verbose cli 'run', | |
1 verbose cli 'shaadi' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose run-script [ 'preshaadi', 'shaadi', 'postshaadi' ] | |
5 info lifecycle [email protected]~preshaadi: [email protected] | |
6 silly lifecycle [email protected]~preshaadi: no script for preshaadi, continuing |
This file contains 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
Arguments: | |
C:\Program Files\nodejs\node.exe C:\Program Files (x86)\Yarn\bin\yarn.js global add angular-cli | |
PATH: | |
C:\Program Files\Docker\Docker\Resources\bin;C:\Program Files (x86)\Java\jdk1.8.0_101\bin;C:\Program Files (x86)\Lenovo\FusionEngine;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Common Files\Acronis\VirtualFile\;C:\Program Files (x86)\Common Files\Acronis\VirtualFile64\;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Program Files (x86)\Calibre2\;C:\Program Files (x86)\Heroku\bin;C:\Program Files (x86)\git\cmd;C:\Program Files (x86)\Git\cmd;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\Program F |
This file contains 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
#!/bin/sh | |
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |
case `uname` in | |
*CYGWIN*) basedir=`cygpath -w "$basedir"`;; | |
esac | |
if [ -x "$basedir//bin/sh" ]; then | |
"$basedir//bin/sh" "$basedir/../../Users/Dheeraj/AppData/Local/Yarn/config/global/node_modules/.bin/ng" "$@" | |
ret=$? |
This file contains 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
================================================================ | |
o | |
(/) P O S T M A N | |
^ | |
Go to View -> Show Postman Console to check your script logs. | |
================================================================ | |
sails.io.js:142 🌏 sync service connectivity initiated | |
sails.io.js:759 socket replaying queued commands |
This file contains 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
==> herokuwp: Running provisioner: shell... | |
herokuwp: Running: C:/Users/Dheeraj/AppData/Local/Temp/vagrant-shell20161201-1744-11iqfeq.sh | |
==> herokuwp: stdin: is not a tty | |
==> herokuwp: ############################### | |
==> herokuwp: ## Provisioning Heroku WP VM ## | |
==> herokuwp: ############################### | |
==> herokuwp: Reading package lists... | |
==> herokuwp: Building dependency tree... | |
==> herokuwp: Reading state information... | |
==> herokuwp: The following packages will be REMOVED: |
This file contains 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
C:\Users\Dheeraj>npm uninstall angular-cli -g | |
- [email protected] node_modules\angular-cli\node_modules\abbrev | |
- [email protected] node_modules\angular-cli\node_modules\acorn | |
- [email protected] node_modules\angular-cli\node_modules\adm-zip | |
- [email protected] node_modules\angular-cli\node_modules\after | |
- [email protected] node_modules\angular-cli\node_modules\agent-base\node_modules\semver | |
- [email protected] node_modules\angular-cli\node_modules\alphanum-sort | |
- [email protected] node_modules\angular-cli\node_modules\amdefine | |
- [email protected] node_modules\angular-cli\node_modules\ansi-escapes | |
- [email protected] node_modules\angular-cli\node_modules\ansi-regex |
This file contains 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
C:\Users\Dheeraj>ng version | |
Cannot find module 'enhanced-resolve/lib/getInnerRequest' | |
Error: Cannot find module 'enhanced-resolve/lib/getInnerRequest' | |
at Function.Module._resolveFilename (module.js:455:15) | |
at Function.Module._load (module.js:403:25) | |
at Module.require (module.js:483:17) | |
at require (internal/module.js:20:19) | |
at Object.<anonymous> (C:\Users\Dheeraj\AppData\Local\Yarn\config\global\node_modules\@ngtools\webpack\src\paths-plugin.js:6:23) | |
at Module._compile (module.js:556:32) | |
at Object.Module._extensions..js (module.js:565:10) |
OlderNewer