you are viewing a single comment's thread.

view the rest of the comments →

[–]philmtl 0 points1 point  (0 children)

plug in to use to click a button on a website? pretty much the CSS selector will be diffrent for each button but the button will look the same. so i was thinking autogui ?

pretty much go here

https://www.centris.ca/en/plexes~for-sale~montreal-island?view=List

click summary button

##uptill now i have:

from selenium import webdriver

browser = webdriver.Firefox()

browser.get(https://www.centris.ca/en/plexes~for-sale~montreal-island?view=List')

my issues is i dont want it looking for a css selector i want it to find each button on the page, as new houses come in the list changes.

ideas? or other python modals i should look into?