selenium 做自动化 如何定位div的弹出框上的按钮
我的脚本如下,html文件见附件,总是定位不到div的弹出框上的确认和取消按钮def logout():
WebDriverWait(driver, 10).until(lambda x: x.find_element_by_id("topPersonName"))
above = driver.find_element_by_id("topPersonName")
ActionChains(driver).move_to_element(above).perform()
driver.find_element_by_link_text(u"退出系统").click()
driver.implicitly_wait(10)
driver.find_element_by_class_name("modal-content").find_element_by_css_selector("button.btn.btn-primary").click()
driver.quit()
dismiss alert 用火狐的xpath定位
页:
[1]