I am using a data scraper and I know just enough code to not know what I'm doing. The scraper is free and has a crawl limit. There is no option to resume the crawl from end point. I need to scrape all li's on the page. The program will only let me select 1 or all li's. I am trying to come up with a manual selector or xpath that would allow me to select from nth-child(200)on. Any help or suggestions?
Is there a general selector for a specific nth of typ and all nths after?
70 Views Asked by fitzgeraldda At
2
There are 2 best solutions below
Related Questions in CSS
- How to use custom font during html to pdf conversion?
- Storing the preferred font-size in localStorage
- mp4 embedded videos within github pages website not loading
- Is there any way to glow this bulb image like a real light bulb
- What can I do to improve my coding on both html and css
- Uncaught TypeError: google.maps.LatLng is not a constructor at init (script.js:7:13)
- Bootstrap modal not showing at the desired position on a web page when the screen size is smaller
- How to increase quality of mathjax output?
- Hover animation resetting( seemingly reverting back to original CSS and then again to hover)when moving mouse horizontaly accross a part of an element
- Storing selected language in localStorage
- How to clip grid cell and provide scroll as well?
- KeyboardAvoidingView makes a messy the flexbox
- Rotate an object around another object in javascript
- Understanding Scroll Anchoring Behavoir
- how to use only block layout in this css code?
Related Questions in WEB-SCRAPING
- Using Puppeteer to scrape a public API only when the data changes
- Scraping information in a span located under nested span
- How to scrape website which loads json content dynamically?
- How can I find a button element and click on it?
- WebScraping doesnt work, even without error
- Need Help Extracting Redirect URL from a div Element with Specific Class Name in Python Selenium
- beautifulsoup library not showing below #document data inside iframe tag in python
- how to create robust scraper for specific website without updating code after develop?
- Optimizing Selenium script for faster execution
- Parse Dynamic Power BI table with selenium
- How to extract table from webpage that requires click/toggle?
- SSL Certificate Verification Error When Scraping Website and Inserting Data into MongoDB
- Scraping all links using BeautifulSoup
- How do I make it so all arrays are the same length?
- I am getting 'NoneType object is not subscriptable' error in web scraping method
Related Questions in XPATH
- How can I load all the elements of a webpage with Selenium?
- Why is the copied XPATH not working for selenium?
- When I'm typing an Xpath or CSS selector in the console why won't matching results appear while typing? Results only appear after pressing Enter
- Nokogiri only returning 5 results
- XPath - how to exclude text from child node
- xpath issue in nested div
- Question using XPath to look for a sibling of a td with a certain name
- How to separate XML tags in freemarker in body function
- Wait using Path (Puppeteer)
- why can't I retrieve the track of my Spotify playlist even i have given correct full xpath
- How do I click the correct link based on text contained in another element using Selenium + Python?
- PHP DOMDocument ignores first table's closing tag
- String tokenise an xpath expression
- Problem to get into the next page, Selenium
- Scrapy / extracting data across multiple HTML tags
Related Questions in SELECTOR
- In what context can we use an unqualified #selector() expression in Swift?
- How can I make sure that my Selector does not overlap my text-area box when hover ? I would like for the selector to smoothly push down the text-area
- How can I display the lowest price for variations on Woocommerce product page?
- Please solve a problem with selectorlib, get this message but can not uderstand it
- How to get an element ful lxpath in WebdriverIO?
- Trouble resolving user names from a separate state in Angular project with ngrx
- CSS Using wildcard * all elements within a :not()
- How can I make my wesbcraper type something and select from a dropdown
- CSS selector ~ targeting a class while hovering another class
- Customize browser certificate selector window
- Testcafe: How is a Selector created to select a timestamp outside of HTML tag? <strong>Timestamp:</strong> 12/13/2023 10:55 A.M. EST
- Uncaught Type Error: allButtons.remove() is not a function?
- How to query contents between headings?
- jQuery click both event.target and additional selector
- Multiple audio elements versus document.querySelector('audio');
Related Questions in PARSEHUB
- Parsehub "This Stencil app is disabled for this browser."
- How to scrape changing survey data of an ajax web survey
- regex convert text to date
- Parsehub - extract list of URLS to a single column in spread sheet/json
- Is there a general selector for a specific nth of typ and all nths after?
- Regex function that only affects strings with specific notation
- Setting up Callback Function for ParseHub API
- Why do I need an exclamation point at the beginning of a condition?
- How to use if control statement in jinju2 embedded html file
- How do I grab the string on the next line in HTML code following <span> tag with specific class and specific text?
- How to receive ParseHub project result in Zapier Webhook?
- Parsehub website elements only display on a certain date
- extracting specific text from a URL using REGEX
- how select a "next page" with Parsehub
- How can I merge keys with the same value into a single object?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can use the
:nth-child()selector, as you mentioned, and change the functional notation according to your desired rule. You can read more about it and how it works here.If you set it to
:nth-child(n+5), the selector will select the fifth element in addition to all the elements that come after it: