
https://iphone.facebook.com/marketplace/selling/item/
base on image that i've upload, i have to fill some column and click few button to post product. i still try to create selenium bot automation to do it but i have problem on clicking the button element like, post button, category (not button but i have to click it to show its option) and last one is location (not button to but have to click it to show the column).
i have csv file as source of data, and i write code below to fill data ;
scraper.element_send_keys('input[name="title"]', data['Title'])
scraper.element_send_keys('input[name="price"]', data['Price'])
scraper.element_send_keys('textarea[name="description"]', data['Description'])
what i need now is click on post button and fill the location and category with data from csv file.
sorry for my bad english but i need help.
Thank you.
I have try using xpath, id and name tag to locate the element for click but not work.
i want code that can click on button and column that i mention above.