selenium python webscraping
i am trying to loop through 42 sites ..
the script works fine for like 4-5 sites.. sometimes 3 sites.. some it reaches till no 15 site.. then i get an error given in the picture.
my code is given below:
import time
import requests
from selenium import webdriver
sites =
userid=
password=
settings=
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-infobars")
print(len(sites))
print(len(userid))
print(len(password))
print(len(settings))
count=5
for x in range(len(sites)):
try:
requests.get(sites[x])
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get(sites[x])
inputElement = driver.find_element_by_id("user_login")
inputElement.send_keys(userid[x])
inputElement = driver.find_element_by_id("user_pass")
inputElement.send_keys(password[x])
inputElement.submit()
link = driver.find_element_by_id('menu-plugins')
link.click()
driver.find_element_by_xpath('//a[@href="'+settings[x]+'"]').click()
driver.find_element_by_id('save_and_import').click()
count=count+2
time.sleep(count)
driver.quit()
except requests.ConnectionError:
print(sites[x]+"DOWN !!")
continue
enter image description here
python web-scraping selenium-chromedriver
|
show 1 more comment
i am trying to loop through 42 sites ..
the script works fine for like 4-5 sites.. sometimes 3 sites.. some it reaches till no 15 site.. then i get an error given in the picture.
my code is given below:
import time
import requests
from selenium import webdriver
sites =
userid=
password=
settings=
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-infobars")
print(len(sites))
print(len(userid))
print(len(password))
print(len(settings))
count=5
for x in range(len(sites)):
try:
requests.get(sites[x])
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get(sites[x])
inputElement = driver.find_element_by_id("user_login")
inputElement.send_keys(userid[x])
inputElement = driver.find_element_by_id("user_pass")
inputElement.send_keys(password[x])
inputElement.submit()
link = driver.find_element_by_id('menu-plugins')
link.click()
driver.find_element_by_xpath('//a[@href="'+settings[x]+'"]').click()
driver.find_element_by_id('save_and_import').click()
count=count+2
time.sleep(count)
driver.quit()
except requests.ConnectionError:
print(sites[x]+"DOWN !!")
continue
enter image description here
python web-scraping selenium-chromedriver
Just move all the code into thetry
block andexcept
everything. That way it can continue.
– pguardiario
Nov 21 '18 at 6:55
did that but same error persists
– Prakash Prajuli
Nov 21 '18 at 7:01
did you put try and except within for loop?
– GigaByte
Nov 21 '18 at 8:26
Ok, just update the code so we can see what you're doing. Remember to use the code formatter (it looks like this: {})
– pguardiario
Nov 21 '18 at 8:38
i upadted the code..still same error..can this be because of cloud flare or chrome driver bug ?
– Prakash Prajuli
Nov 21 '18 at 8:45
|
show 1 more comment
i am trying to loop through 42 sites ..
the script works fine for like 4-5 sites.. sometimes 3 sites.. some it reaches till no 15 site.. then i get an error given in the picture.
my code is given below:
import time
import requests
from selenium import webdriver
sites =
userid=
password=
settings=
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-infobars")
print(len(sites))
print(len(userid))
print(len(password))
print(len(settings))
count=5
for x in range(len(sites)):
try:
requests.get(sites[x])
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get(sites[x])
inputElement = driver.find_element_by_id("user_login")
inputElement.send_keys(userid[x])
inputElement = driver.find_element_by_id("user_pass")
inputElement.send_keys(password[x])
inputElement.submit()
link = driver.find_element_by_id('menu-plugins')
link.click()
driver.find_element_by_xpath('//a[@href="'+settings[x]+'"]').click()
driver.find_element_by_id('save_and_import').click()
count=count+2
time.sleep(count)
driver.quit()
except requests.ConnectionError:
print(sites[x]+"DOWN !!")
continue
enter image description here
python web-scraping selenium-chromedriver
i am trying to loop through 42 sites ..
the script works fine for like 4-5 sites.. sometimes 3 sites.. some it reaches till no 15 site.. then i get an error given in the picture.
my code is given below:
import time
import requests
from selenium import webdriver
sites =
userid=
password=
settings=
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-infobars")
print(len(sites))
print(len(userid))
print(len(password))
print(len(settings))
count=5
for x in range(len(sites)):
try:
requests.get(sites[x])
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get(sites[x])
inputElement = driver.find_element_by_id("user_login")
inputElement.send_keys(userid[x])
inputElement = driver.find_element_by_id("user_pass")
inputElement.send_keys(password[x])
inputElement.submit()
link = driver.find_element_by_id('menu-plugins')
link.click()
driver.find_element_by_xpath('//a[@href="'+settings[x]+'"]').click()
driver.find_element_by_id('save_and_import').click()
count=count+2
time.sleep(count)
driver.quit()
except requests.ConnectionError:
print(sites[x]+"DOWN !!")
continue
enter image description here
python web-scraping selenium-chromedriver
python web-scraping selenium-chromedriver
edited Nov 21 '18 at 8:44
Prakash Prajuli
asked Nov 21 '18 at 6:42
Prakash PrajuliPrakash Prajuli
11
11
Just move all the code into thetry
block andexcept
everything. That way it can continue.
– pguardiario
Nov 21 '18 at 6:55
did that but same error persists
– Prakash Prajuli
Nov 21 '18 at 7:01
did you put try and except within for loop?
– GigaByte
Nov 21 '18 at 8:26
Ok, just update the code so we can see what you're doing. Remember to use the code formatter (it looks like this: {})
– pguardiario
Nov 21 '18 at 8:38
i upadted the code..still same error..can this be because of cloud flare or chrome driver bug ?
– Prakash Prajuli
Nov 21 '18 at 8:45
|
show 1 more comment
Just move all the code into thetry
block andexcept
everything. That way it can continue.
– pguardiario
Nov 21 '18 at 6:55
did that but same error persists
– Prakash Prajuli
Nov 21 '18 at 7:01
did you put try and except within for loop?
– GigaByte
Nov 21 '18 at 8:26
Ok, just update the code so we can see what you're doing. Remember to use the code formatter (it looks like this: {})
– pguardiario
Nov 21 '18 at 8:38
i upadted the code..still same error..can this be because of cloud flare or chrome driver bug ?
– Prakash Prajuli
Nov 21 '18 at 8:45
Just move all the code into the
try
block and except
everything. That way it can continue.– pguardiario
Nov 21 '18 at 6:55
Just move all the code into the
try
block and except
everything. That way it can continue.– pguardiario
Nov 21 '18 at 6:55
did that but same error persists
– Prakash Prajuli
Nov 21 '18 at 7:01
did that but same error persists
– Prakash Prajuli
Nov 21 '18 at 7:01
did you put try and except within for loop?
– GigaByte
Nov 21 '18 at 8:26
did you put try and except within for loop?
– GigaByte
Nov 21 '18 at 8:26
Ok, just update the code so we can see what you're doing. Remember to use the code formatter (it looks like this: {})
– pguardiario
Nov 21 '18 at 8:38
Ok, just update the code so we can see what you're doing. Remember to use the code formatter (it looks like this: {})
– pguardiario
Nov 21 '18 at 8:38
i upadted the code..still same error..can this be because of cloud flare or chrome driver bug ?
– Prakash Prajuli
Nov 21 '18 at 8:45
i upadted the code..still same error..can this be because of cloud flare or chrome driver bug ?
– Prakash Prajuli
Nov 21 '18 at 8:45
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406538%2fselenium-python-webscraping%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406538%2fselenium-python-webscraping%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Just move all the code into the
try
block andexcept
everything. That way it can continue.– pguardiario
Nov 21 '18 at 6:55
did that but same error persists
– Prakash Prajuli
Nov 21 '18 at 7:01
did you put try and except within for loop?
– GigaByte
Nov 21 '18 at 8:26
Ok, just update the code so we can see what you're doing. Remember to use the code formatter (it looks like this: {})
– pguardiario
Nov 21 '18 at 8:38
i upadted the code..still same error..can this be because of cloud flare or chrome driver bug ?
– Prakash Prajuli
Nov 21 '18 at 8:45