This repository was archived by the owner on Jun 30, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
selenium-node-firefox/bin Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1313echo " Waiting for Selenium Hub to be ready..."
1414
1515# Selenium <= 3.3.1 then: while ! curl -s "${SEL_STATUS_URL}" | jq '.status' | grep "13"; do
16- SUCESS_CMD=" jq .status | grep 13"
16+ # SUCESS_CMD="jq .status | grep 13"
1717
1818# Selenium >= 3.5.0 then: while ! curl -s "${SEL_STATUS_URL}" | jq '.status' | grep "0"; do
19- # SUCESS_CMD="jq .status | grep 0"
19+ SUCESS_CMD=" jq .status | grep 0"
2020
2121while ! curl -s " ${SEL_STATUS_URL} " | sh -c " ${SUCESS_CMD} " ; do
2222 echo -n ' .'
Original file line number Diff line number Diff line change 1313echo " Waiting for Selenium multi-node (Chrome & Firefox) to be ready..."
1414
1515# Selenium <= 3.3.1 then: while ! curl -s "${SEL_STATUS_URL}" | jq '.state' | grep "success"; do
16- SUCESS_CMD=" jq .state | grep success"
16+ # SUCESS_CMD="jq .state | grep success"
1717
1818# Selenium >= 3.5.0 then: while ! curl -s "${SEL_STATUS_URL}" | jq .value.ready | grep "true"; do
19- # SUCESS_CMD="jq .value.ready | grep true"
19+ SUCESS_CMD=" jq .value.ready | grep true"
2020
2121while ! curl -s " ${SEL_STATUS_URL} " | sh -c " ${SUCESS_CMD} " ; do
2222 echo -n ' .'
Original file line number Diff line number Diff line change 1313echo " Waiting for Selenium Node Chrome ${CHROME_FLAVOR} to be ready..."
1414
1515# Selenium <= 3.3.1 then: while ! curl -s "${SEL_STATUS_URL}" | jq '.state' | grep "success"; do
16- SUCESS_CMD=" jq .state | grep success"
16+ # SUCESS_CMD="jq .state | grep success"
1717
1818# Selenium >= 3.5.0 then: while ! curl -s "${SEL_STATUS_URL}" | jq .value.ready | grep "true"; do
19- # SUCESS_CMD="jq .value.ready | grep true"
19+ SUCESS_CMD=" jq .value.ready | grep true"
2020
2121while ! curl -s " ${SEL_STATUS_URL} " | sh -c " ${SUCESS_CMD} " ; do
2222 echo -n ' .'
Original file line number Diff line number Diff line change 1313echo " Waiting for Selenium Node Firefox ${FIREFOX_VERSION} to be ready..."
1414
1515# Selenium <= 3.3.1 then: while ! curl -s "${SEL_STATUS_URL}" | jq '.state' | grep "success"; do
16- SUCESS_CMD=" jq .state | grep success"
16+ # SUCESS_CMD="jq .state | grep success"
1717
1818# Selenium >= 3.5.0 then: while ! curl -s "${SEL_STATUS_URL}" | jq .value.ready | grep "true"; do
19- # SUCESS_CMD="jq .value.ready | grep true"
19+ SUCESS_CMD=" jq .value.ready | grep true"
2020
2121while ! curl -s " ${SEL_STATUS_URL} " | sh -c " ${SUCESS_CMD} " ; do
2222 echo -n ' .'
You can’t perform that action at this time.
0 commit comments