use `xvfb-run java -Dwebdriver.chrome.driver=/home/vagrant/sites/millenium-testsuite/bin/drivers/chromedriver -jar bin/server/selenium-server-standalone-3.12.0.jar` or
`xvfb-run java -Dwebdriver.gecko.driver=/home/vagrant/sites/millenium-testsuite/bin/drivers/geckodriver -jar bin/server/selenium-server-standalone-3.12.0.jar
` to avoid issues in phantomjs
download link for selenium-server-standalone-3.12.0.jar: https://goo.gl/tbd1NS
start phantomjs server node_modules/.bin/phantomjs --webdriver=8001 or use selenium server java -jar bin/server/selenium-server-standalone-3.12.0.jar
or use xvfb-run phantomjs --webdriver=8001 or phantomjs -platform offscreen --webdriver=8001
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
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
--- | |
ip: "192.168.10.10" | |
memory: 2048 | |
cpus: 1 | |
provider: virtualbox | |
authorize: ~/.ssh/id_rsa.pub | |
keys: | |
- ~/.ssh/id_rsa |
##laravel
logging in laravel
tail -n0 -F storage/logs/laravel.log
add use Log;
above the class then use Log::info('check this var =' . $var);
install laravel
composer create-project laravel/laravel laravelapp
Git config
git config --global user.email "[email protected]"
git config --global user.name "ıqO"
git branch -av #list all branches
Working with tags (https://git-scm.com/book/en/v2/Git-Basics-Tagging)
git tag <tag-name>
Prompt for password:
mysql -u <username> -p <databasename> < <filename.sql>
Enter password directly (not secure):
mysql -u <username> -p<PlainPassword> <databasename> < <filename.sql>
Example:
mysql -u root -p wp_users < wp_users.sql
Solution:
I just found a solution to my problem. The atom window was rendered outside any screen >coordinates. I did the following steps to solve it:
Alt + Tab to choose the atom window
Alt + Space to open the context menu
Press 'm' to select move
Press any arrow key once
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
#!/usr/bin/env bash | |
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/ | |
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c | |
# http://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver | |
# http://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception | |
# http://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal | |
# http://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04 | |
# Versions | |
CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE` |
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
[ | |
"United States" => "us", | |
"Afghanistan" => "af", | |
"Albania" => "al", | |
"Algeria" => "dz", | |
"American Samoa" => "as", | |
"Andorra" => "ad", | |
"Angola" => "ad", | |
"Anguilla" => "ai", | |
"Antarctica" => "aq", |
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/bash | |
# Install dependencies | |
# older ubuntus | |
#apt-get install build-essential libsqlite3-dev ruby1.9.1-dev | |
# xenial | |
sudo apt install build-essential libsqlite3-dev ruby-dev | |
# Install the gem | |
sudo gem install mailcatcher --no-ri --no-rdoc |
OlderNewer