97 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
73
views
How do I convert a browse link to a playlist link
how to I convert a browse link to a playlist link
https://music.youtube.com/browse/MPREb_xFN2XG22AXC ---> https://music.youtube.com/playlist?list=OLAK5uy_nQY-UERFpsL1d5UTPVMjX7mtnVlKg7D4w
0
votes
1
answer
237
views
IOT based queue management system with nodeMcu (esp8266)
I want to create a queue management system used on counters in shops or banks as my data-structure project. I know HTML, CSS, some JavaScript and C++. This is for my DSA project in my institute. I am ...
0
votes
1
answer
35
views
Python Selenium Dropdown list Clickable
I want to scrap investing.com website. Firefox Webdriver closes when clicking on one of the dropdown list item.
Dropdown menu is hiidden. I want to choose "BİST Ulusal Tüm" item. What can i ...
0
votes
1
answer
171
views
Python Scrapy 999 error meaning. Linkedin company data scraping
I am trying to scrape company data on Linkedin.
In order to get to the company page, login is required.
I am using the following Scrapy Spider:
import scrapy
from scrapy import Spider
from scrapy.http ...
0
votes
0
answers
70
views
issues with selenium, not finding by xpath on iframe
I'm doing web scraping with Selenium in python and I need to click a button to extract some data this button is inside of an iframe which I already switched (switch.to_frame()) and Selenium still ...
1
vote
1
answer
205
views
How to extract html input value by id with Selenium in Python
How can I extract the value 4 using elementId maxId in Python.
<input type="hidden" id="maxId" value="4">
Python: 3.11.1, ChromeDriver: 109.0.5414.74
1
vote
1
answer
98
views
Element is found but not clickable
I'm trying to find an element by it's id, click on it and download a file.
driver.get(url);
driver.implicitly_wait(60);
time.sleep(3)
element = WebDriverWait(driver, 20).until(EC....
0
votes
0
answers
169
views
How to capture note screenshot from web page using typescript
I wanted to write code in typesript to capture image from web page
Like all browser have option in inspect element -> select element -> right click -> capture note screenshot
As show in ...
1
vote
1
answer
1k
views
How to check if the specific text on a website changed using python script
I'm trying to write a python script to check the status's display text for a specific country (ie. Ecuador)
on this website:
https://immi.homeaffairs.gov.au/what-we-do/whm-program/status-of-country-...
0
votes
2
answers
68
views
Grab information from inside the form using web scraping - python 3
I'm creating a project using web scraping , I'm having trouble extracting information from an Iframe form, when I try to extract the values of the name , position and company field.
Code I'm testing:...
1
vote
1
answer
37
views
When importing HTML into Google Sheets, there are issues with the order by and select col functions as well as the header
I am using this function =QUERY(INDEX(SUBSTITUTE(IMPORTHTML (I2 & "?refresh=" & I6,I3,I4), "*", )), "SELECT Col1, Col2, Col3, Col4 ORDER BY Col1 ASC")
This is ...
0
votes
2
answers
80
views
is it possible to receive Dom in google webscript?
I receive from google sheet some html tags to be displayed but it shows as raw string. here is how
Index.html
<? var BlogData = getSheetData("Blogs"); ?>
<? for(var i = 0; i <...
1
vote
2
answers
146
views
Selenium Python: Invalid Selector in find_element_by_css_selector (Error)
I'm doing an automation to search a certain process on a website and collect information. When requesting data collection, it returns the following error:
"Selenium Python: Invalid Selector in ...
0
votes
2
answers
1k
views
Web scripting invalid syntax in URL
I am a beginner of web scripting.
I was following a tutorial on Edureka: A Beginner’s Guide to learn web scraping with python!.
There is a syntax error shown inside the URL of my script:
driver.get('&...
0
votes
1
answer
277
views
BeautifulSoup gives an empty list
I am trying to scrape website with Beautiful Soup. After printing the container, It gives me an empty list. How can I fix this?
import requests
from bs4 import BeautifulSoup
import lxml
URL = 'https:/...