Selenium Webdriver - Python - leboncoin - pb选择带重音的按钮

时间:2018-03-03 10:09:05

标签: python selenium webdriver

我正在尝试在以下网站上自动填写表单:' https://www.leboncoin.fr/'

我已经用Selenium IDE录制了一个脚本。

我有一个功能,可以通过点击按钮' Se connecter'来自动连接。并填写我的密码和用户名。它工作正常

我已为此主题设置了特定凭据 电子邮件:thecoingood@gmail.com pwd:thecoingood1

代码是

# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.webdriver.support.ui import WebDriverWait
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re

class Connectionwebdriver2(unittest.TestCase):
    def setUp(self):
        self.driver = webdriver.Safari()
        self.driver.implicitly_wait(30)
        self.driver.maximize_window()
        self.base_urldr = "https://compteperso.leboncoin.fr/account/index.html"
        self.verificationErrors = []
        self.accept_next_alert = True

    def test_connectionwebdriver2(self):
        driver = self.driver
        driver.get(self.base_urldr)
        driver.find_element_by_name("st_username").clear()
        driver.find_element_by_name("st_username").send_keys("thecoingood@gmail.com ")
        driver.find_element_by_name("st_passwd").clear()
        driver.find_element_by_name("st_passwd").send_keys("thecoingood1")
        driver.find_element_by_id("connect_button").click()
        #driver.get("https://www2.leboncoin.fr/ai?ca=15_s")

        my_annonce = WebDriverWait(self.driver, 10)\
        .until(EC.element_to_be_clickable((By.LINK_TEXT, "Supprimer")))
        my_annonce.click()
        #time.sleep(10)
        #driver.find_element_by_link_text("Supprimer").click()
        #WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//a[@href='//https://compteperso.leboncoin.fr/account/index.html?ca=12_s' and contains(.,'posez une annonce')]"))).click()
        #Select(driver.find_element_by_id("category")).select_by_visible_text('Locations')
        #Select(driver.find_element_by_id('cat10')).select()

    def is_element_present(self, how, what):
        try: self.driver.find_element(by=how, value=what)
        except NoSuchElementException as e: return False
        return True

    def is_alert_present(self):
        try: self.driver.switch_to_alert()
        except NoAlertPresentException as e: return False
        return True

    def close_alert_and_get_its_text(self):
        try:
            alert = self.driver.switch_to_alert()
            alert_text = alert.text
            if self.accept_next_alert:
                alert.accept()
            else:
                alert.dismiss()
            return alert_text
        finally: self.accept_next_alert = True

    def tearDown(self):
        self.driver.quit()
        self.assertEqual([], self.verificationErrors)

if __name__ == "__main__":
    unittest.main(verbosity=2)

连接后,我被重定向到 https://compteperso.leboncoin.fr/account/index.html?ca=12_s (问题:用这个新地址更新的硒中使用的对象,或者仍然坚持使用可能产生问题的初始地址)

当我尝试点击

<a href="//www2.leboncoin.fr/ai?ca=15_s">Déposez une annonce</a>

使用此代码

driver.find_element_by_link_text(u"Déposez une annonce").click()

什么都没发生(没有错误)。

我认为这与链接尚未显示的事实有关。 我试图添加time.sleep()并阅读

How can I get Selenium Web Driver to wait for an element to be accessible, not just present?

但是不能解决这个问题。我可以添加一个直接链接到页面,但我想了解。

提前致谢

1 个答案:

答案 0 :(得分:1)

根据您的问题点击标签 / 链接,文字为Déposezuneannonce ,您可以使用以下代码行:

  • 要点击TAB,文字为Déposezuneannonce ,请使用:

    WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//li[@class='deposer']/a[contains(@href,'//www2.leboncoin.fr/ai?ca=') and contains(.,'une annonce')]"))).click()
    
  • 要点击BUTTON,文字为Déposezuneannonce ,请使用:

    WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[@class='create']/a[contains(@href,'//www2.leboncoin.fr/ai?ca=') and contains(.,'une annonce')]"))).click()