Selenium: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 71: Line 71:
|-
|-
|colspan="3"|
|colspan="3"|
  wget -c wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2\
  sudo mkdir -p /opt/cli
  -P $HOME/Downloads/
sudo wget -c wget https://bitbucket.org/ariya\
  /phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 -P /opt/cli/
   
   
  sudo mkdir -p /opt/cli
  sudo tar xvjf /opt/cli/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /opt/cli/
sudo tar xvjf $HOME/Downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /opt/cli/
  sudo ln -s /opt/cli/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/local/bin/
  sudo ln -s /opt/cli/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/local/bin/


Line 89: Line 89:
  sudo tar xvjf /opt/cli/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /opt/cli/
  sudo tar xvjf /opt/cli/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /opt/cli/
  sudo rm  -rf  /opt/cli/phantomjs-2.1.1-linux-x86_64.tar.bz2
  sudo rm  -rf  /opt/cli/phantomjs-2.1.1-linux-x86_64.tar.bz2
  sudo update-alternatives --install /usr/bin/phantomjs phantomjs\
  sudo update-alternatives --install /usr/local/bin/phantomjs phantomjs\
   /opt/cli/phantomjs-2.1.1-linux-x86_64/bin/phantomjs 1980
   /opt/cli/phantomjs-2.1.1-linux-x86_64/bin/phantomjs 1980



Revision as of 22:03, 29 May 2022

docker run --detach \
--publish 4444:4444 \
--hostname firefox \
--name firefox \
--shm-size 2g \
selenium/standalone-firefox:80.0

--OR--

docker run --detach \
--publish 4444:4444 \
--hostname firefox \
--name firefox \
--volume /dev/shm:/dev/shm \
selenium/standalone-firefox:80.0
docker exec -it firefox cat /etc/hosts
http://localhost:4444/wd/hub
docker run --detach \
--publish 4444:4444 \
--hostname chrome \
--name chrome \
--shm-size 2g \
selenium/standalone-chrome:85.0

--OR--

docker run --detach \
--publish 4444:4444 \
--hostname chrome \
--name chrome \
--volume /dev/shm:/dev/shm \
selenium/standalone-chrome:85.0
docker exec -it chrome cat /etc/hosts
http://localhost:4444/wd/hub
docker run --detach \
--publish 4444:4444 \
--hostname opera \
--name opera \
--shm-size 2g \
selenium/standalone-opera:71.0

--OR--

docker run --detach \
--publish 4444:4444 \
--hostname opera \
--name opera \
--volume /dev/shm:/dev/shm \
selenium/standalone-opera:71.0
docker exec -it opera cat /etc/hosts
http://localhost:4444/wd/hub

sudo mkdir -p /opt/cli
sudo wget -c wget https://bitbucket.org/ariya\
 /phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2  -P /opt/cli/

sudo tar xvjf /opt/cli/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /opt/cli/
sudo ln -s /opt/cli/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/local/bin/

sudo mkdir -p /opt/cli
sudo wget -c wget https://bitbucket.org/ariya\
 /phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2  -P /opt/cli/

sudo tar xvjf /opt/cli/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C /opt/cli/
sudo rm  -rf  /opt/cli/phantomjs-2.1.1-linux-x86_64.tar.bz2
sudo update-alternatives --install /usr/local/bin/phantomjs phantomjs\
 /opt/cli/phantomjs-2.1.1-linux-x86_64/bin/phantomjs 1980

References