Selenium automation with bot
I tried to create a bot with Selenium and the goal is to collect the entire contacts which is listed in an online market platform.
The website loads with 12 ads at a time, so I made the bot to increase the load as much as possible to show around 1000 listings. The problem is however that the listings contacts are on the next page, so I have to get the bot to click on every listing of the 1000 loaded listing and click on the call now button which is also on the next page.
I cannot seem to figure out how to do that though.
I tried adding .click() to the element after the bot has revealed 1000 listing but it does not work for some reason.
Any help or advice would be greatly appreciated.
I want the bot to :
- Load the webpage
- Press load more until 1000 ads are displayed on the page
- Go through each of the 1000 listing, click on them and get the contact information on the next page
Code:
from selenium import webdriver
import time
browser = webdriver.Chrome('C:\Users\IFY\Downloads\chromedriver.exe')
browser.get('https://www.olx.com.ng/abuja_g40000000068')
elems = browser.find_elements_by_class_name('EIR5N')
button = browser.find_element_by_xpath("""//*[@id="container"]/main/div/section/div/div/div[4]/div[2]/div/div[3]/button""")
link = browser.find_elements_by_class_name("_1X63c")
while len(elems) < 10000:
button.send_keys("n")
else:
print(link)
python selenium web-scraping automation
add a comment |
I tried to create a bot with Selenium and the goal is to collect the entire contacts which is listed in an online market platform.
The website loads with 12 ads at a time, so I made the bot to increase the load as much as possible to show around 1000 listings. The problem is however that the listings contacts are on the next page, so I have to get the bot to click on every listing of the 1000 loaded listing and click on the call now button which is also on the next page.
I cannot seem to figure out how to do that though.
I tried adding .click() to the element after the bot has revealed 1000 listing but it does not work for some reason.
Any help or advice would be greatly appreciated.
I want the bot to :
- Load the webpage
- Press load more until 1000 ads are displayed on the page
- Go through each of the 1000 listing, click on them and get the contact information on the next page
Code:
from selenium import webdriver
import time
browser = webdriver.Chrome('C:\Users\IFY\Downloads\chromedriver.exe')
browser.get('https://www.olx.com.ng/abuja_g40000000068')
elems = browser.find_elements_by_class_name('EIR5N')
button = browser.find_element_by_xpath("""//*[@id="container"]/main/div/section/div/div/div[4]/div[2]/div/div[3]/button""")
link = browser.find_elements_by_class_name("_1X63c")
while len(elems) < 10000:
button.send_keys("n")
else:
print(link)
python selenium web-scraping automation
4
Do not ask code for your complete scenario - ask for solution of just your current issue. Note that "but it won't work for some reason" is bad problem description and "Selenium autotomation" is bad question. Use edit button to make required updates
– Andersson
Jan 2 at 16:28
add a comment |
I tried to create a bot with Selenium and the goal is to collect the entire contacts which is listed in an online market platform.
The website loads with 12 ads at a time, so I made the bot to increase the load as much as possible to show around 1000 listings. The problem is however that the listings contacts are on the next page, so I have to get the bot to click on every listing of the 1000 loaded listing and click on the call now button which is also on the next page.
I cannot seem to figure out how to do that though.
I tried adding .click() to the element after the bot has revealed 1000 listing but it does not work for some reason.
Any help or advice would be greatly appreciated.
I want the bot to :
- Load the webpage
- Press load more until 1000 ads are displayed on the page
- Go through each of the 1000 listing, click on them and get the contact information on the next page
Code:
from selenium import webdriver
import time
browser = webdriver.Chrome('C:\Users\IFY\Downloads\chromedriver.exe')
browser.get('https://www.olx.com.ng/abuja_g40000000068')
elems = browser.find_elements_by_class_name('EIR5N')
button = browser.find_element_by_xpath("""//*[@id="container"]/main/div/section/div/div/div[4]/div[2]/div/div[3]/button""")
link = browser.find_elements_by_class_name("_1X63c")
while len(elems) < 10000:
button.send_keys("n")
else:
print(link)
python selenium web-scraping automation
I tried to create a bot with Selenium and the goal is to collect the entire contacts which is listed in an online market platform.
The website loads with 12 ads at a time, so I made the bot to increase the load as much as possible to show around 1000 listings. The problem is however that the listings contacts are on the next page, so I have to get the bot to click on every listing of the 1000 loaded listing and click on the call now button which is also on the next page.
I cannot seem to figure out how to do that though.
I tried adding .click() to the element after the bot has revealed 1000 listing but it does not work for some reason.
Any help or advice would be greatly appreciated.
I want the bot to :
- Load the webpage
- Press load more until 1000 ads are displayed on the page
- Go through each of the 1000 listing, click on them and get the contact information on the next page
Code:
from selenium import webdriver
import time
browser = webdriver.Chrome('C:\Users\IFY\Downloads\chromedriver.exe')
browser.get('https://www.olx.com.ng/abuja_g40000000068')
elems = browser.find_elements_by_class_name('EIR5N')
button = browser.find_element_by_xpath("""//*[@id="container"]/main/div/section/div/div/div[4]/div[2]/div/div[3]/button""")
link = browser.find_elements_by_class_name("_1X63c")
while len(elems) < 10000:
button.send_keys("n")
else:
print(link)
python selenium web-scraping automation
python selenium web-scraping automation
edited Jan 2 at 18:31
Jeroen Heier
2,18942027
2,18942027
asked Jan 2 at 16:13
StyxinStyxin
308
308
4
Do not ask code for your complete scenario - ask for solution of just your current issue. Note that "but it won't work for some reason" is bad problem description and "Selenium autotomation" is bad question. Use edit button to make required updates
– Andersson
Jan 2 at 16:28
add a comment |
4
Do not ask code for your complete scenario - ask for solution of just your current issue. Note that "but it won't work for some reason" is bad problem description and "Selenium autotomation" is bad question. Use edit button to make required updates
– Andersson
Jan 2 at 16:28
4
4
Do not ask code for your complete scenario - ask for solution of just your current issue. Note that "but it won't work for some reason" is bad problem description and "Selenium autotomation" is bad question. Use edit button to make required updates
– Andersson
Jan 2 at 16:28
Do not ask code for your complete scenario - ask for solution of just your current issue. Note that "but it won't work for some reason" is bad problem description and "Selenium autotomation" is bad question. Use edit button to make required updates
– Andersson
Jan 2 at 16:28
add a 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%2f54009607%2fselenium-automation-with-bot%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%2f54009607%2fselenium-automation-with-bot%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
4
Do not ask code for your complete scenario - ask for solution of just your current issue. Note that "but it won't work for some reason" is bad problem description and "Selenium autotomation" is bad question. Use edit button to make required updates
– Andersson
Jan 2 at 16:28