Sebastian Rooks
Junior Member
- Nov 16, 2015
- 138
- 113
Hi everyone,
I find myself in a bit of a bind. The site I'm trying to scrape is: https://publicindex.sccourts.org/Lexington/PublicIndex/PISearch.aspx
I don't need the data, or a scraper written, I just need to get past one hurdle, for which I'll paypal you $50.
Python / selenium 3.141 / chromedriver 91
Clicks on the search button, as well as the individual search result links via selenium aren't working. I'm not able to sort out the aspx __doPostback nightmare that's catching me.
button.click() - fail
ActionChains(driver).click(button).perform() - fail
ActionChains(.driver).move_to_element(button).move_by_offset(1, 1).click().perform() - fail
driver.execute_script("arguments[0].click()", button) - fail
button.click() via JS in console - success
What's the difference between the last two?
Anyway, get me over this sticking point and make a quick $50. If you're going to respond to this, please be available immediately.
Thanks!
I find myself in a bit of a bind. The site I'm trying to scrape is: https://publicindex.sccourts.org/Lexington/PublicIndex/PISearch.aspx
I don't need the data, or a scraper written, I just need to get past one hurdle, for which I'll paypal you $50.
Python / selenium 3.141 / chromedriver 91
Clicks on the search button, as well as the individual search result links via selenium aren't working. I'm not able to sort out the aspx __doPostback nightmare that's catching me.
button.click() - fail
ActionChains(driver).click(button).perform() - fail
ActionChains(.driver).move_to_element(button).move_by_offset(1, 1).click().perform() - fail
driver.execute_script("arguments[0].click()", button) - fail
button.click() via JS in console - success
What's the difference between the last two?
Anyway, get me over this sticking point and make a quick $50. If you're going to respond to this, please be available immediately.
Thanks!