All Questions
143 questions
0
votes
0
answers
54
views
Python Script to Fetch Instagram Tageted User's Followers and Following and Store in Excel - Timeouts Encountered
I am share the part of code in my program to fetch the follower and following lists of a specific Instagram user and store the data in an Excel sheet. I'm using Selenium to interact with the Instagram ...
-1
votes
1
answer
161
views
Scrape images into an excel file - Selenium/Pandas/Python [closed]
I'm looking to scrape an image from a website into an excel file.
Below is a snippet of my code. This gets the SRC URL and put that into the excel sheet. Is it possible to turn that into the actual ...
0
votes
0
answers
50
views
Is there any way to run multiple selenium webdrivers within a python script?
So I'm currently embarking on my web scraping/data analysis journey and was curious if there is anyway to have several selenium webdrivers running at the same time?
This script is for a mobile game ...
0
votes
1
answer
71
views
how to start autofill from the last select row in csv file python selenium webdriver after the autofill has stoped
I have created an autofill with python selenium and I have a small problem with it, the autofill stops by itself after it has reached the autofill ROW 15 or 18 or 20 and when I restart the autofill it ...
-4
votes
1
answer
85
views
beginner writing code for web scrapping link,text,images from multiple webpages using selenium and python and store in excel
This is the code I have written:
from selenium import webdriver
import pandas as pd
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import ...
0
votes
1
answer
131
views
For Python+Selenium scripts, how to Fetch data from a Sharepoint's Excel file?
For Python+Selenium scripts, how to Fetch data from a Sharepoint's Excel file?
Do we have to mandatorily download the File each time during the Automation Run, and fetch the data from that downloaded ...
0
votes
0
answers
45
views
I'm not able to read lines after the filter in Pandas with Selenium
I'm new to Pandas and Selenium and I have a small doubt with Pandas and Selenium. I'm extracting data from an Excel spreadsheet to send to a web form as a test.
I have an Excel spreadsheet called &...
-2
votes
1
answer
5k
views
How to locate element in shadow-root (closed) host
Its my code. I have a excel datas and wanna search these on that url but vscode cant finding elements. Why it cant find that element? I tried css selector,id, xpath but didnt work.
import openpyxl
...
0
votes
1
answer
72
views
How can I fix a incorrect coloring of floats using openpyxl?
I have problem with my code. The code is supposed to run a different script that scrapes two match betting websites and then writes the matches and rates in xlsx file. The code I have problem with is ...
0
votes
1
answer
527
views
Writing an HTML table to Excel using Selenium & openpyxl
I'm having some trouble getting this loop to write to Excel in a clean matrix.
The idea is to iterate through the row an HTML table & essentially recreate it in Excel.
The block relevant to this ...
-1
votes
2
answers
155
views
How to execute my python script automatically
I had created one python script which will collect data from excel sheets and creating web requests automatically. There are 150 people in my organization.
I can install python to everyone's system ...
0
votes
1
answer
92
views
Issue with cookies popup in selenium
Here is my code in which there are several small issues i would need your help to fix:
import openpyxl
import unittest
from selenium import webdriver
from selenium.webdriver.chrome.service import ...
1
vote
2
answers
9k
views
How to read excel line by line in pandas
I want to ask how can How to read excel line by line in pandas. I want it to be in a loop that will get line by line information for facebook login with selenium. Hope everyone is easygoing because I'...
0
votes
1
answer
851
views
How to import data into specific column of an existing dataset and save as new dataset?
As i continue my project on python web scraping to excel, I manage to extract the information I wanted and put it in a fresh excel file. For the next step, instead of generating on a new sheet, I ...
0
votes
0
answers
40
views
Python - How can I write data from/to an Excel file, then rerun the code with a new input
im currently making a code in Python that goes onto a website, inputs texts, searches for the text, then copies over some data into an excel file. Im using xlsxwriter to do the excel part. However, I ...