Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why Cant I Click an Element in Selenium?

I am trying to click an element in Selenium.

The site is: url = "http://jenner.com/people"

The xpath for the element is: url = //div[@class='filter offices']

Here is my code:

from selenium import webdriver
driver = webdriver.Firefox()
driver.get(url)
element = driver.find_element_by_xpath("//div[@class='filter offices']")
element.click()

When I click the element, the drop down for offices should appear. Instead, when I click the element, nothing happens. What am I doing wrong?

like image 507
Neil Aggarwal Avatar asked May 12 '13 19:05

Neil Aggarwal


1 Answers

You are clicking on div that contains other div with event listener. You should click on div where listener ist registered. This xpath should work:

//div[@class='filter offices']/div[@class='header']
like image 200
Walery Strauch Avatar answered Oct 10 '22 04:10

Walery Strauch