IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Python Discussion :

Détecter dates disponibles sur un calendrier [Python 3.X]


Sujet :

Python

  1. #1
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut Détecter dates disponibles sur un calendrier
    Bonjour,

    Je suis entrain de concevoir un script d'automatisation du processus de prise de rendez-vous sur le calendrier appartenant à un site Web.

    Actuellement sur la page du calendrier, je souhaiterais détecter les dates disponibles, en sélectionner une dans un premier temps.

    Après choix d'une date disponible, le site invite l'utilisateur à choisir une plage horaire et à choisir son type de visa. A noter que les éléments plage horaire et type de visa ne sont visibles qu'en cas de dates disponibles.

    Je souhaiterais que le script, en cas d'indisponibilité de plage horaire, retourne aux dates disponibles, en sélectionne une autre et y choisisse une plage horaire disponible.

    J'ai commencé par détecter les dates disponibles par xpath :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    available_dates = driver.find_elements(By.XPATH, "//div[@class='datepicker-days']/table/tbody/tr/td[not(contains(@class, 'disabled'))]")
    Lien du calendrier : https://www.linkpicture.com/q/Sans-titre_7.jpg

  2. #2
    Expert éminent sénior
    Avatar de Sve@r
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Février 2006
    Messages
    12 689
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Oise (Picardie)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Février 2006
    Messages : 12 689
    Points : 30 983
    Points
    30 983
    Billets dans le blog
    1
    Par défaut
    Bonjour
    Citation Envoyé par Is El Voir le message
    Actuellement sur la page du calendrier, je souhaiterais détecter les dates disponibles, en sélectionner une dans un premier temps.
    Ce n'est pas comme ça qu'on travaille. On ne demande pas à son programme de lire un truc que ledit programme a affiché et donc qu'il connait !!!
    Ton programme crée son calendrier en fonction des rendez-vous déjà enregistrés (Contrôleur) puis affiche ce calendrier (Vue). Ensuite il lit ce que demande l'utilisateur (Vue) et vérifie si sa demande est compatible avec le calendrier qu'il a en mémoire (Contrôleur). Si oui ok. Et au final il enregistre le calendrier dans un outil de stockage (bdd, fichier) => Modèle.
    C'est la programmation MVC.
    Mon Tutoriel sur la programmation «Python»
    Mon Tutoriel sur la programmation «Shell»
    Sinon il y en a pleins d'autres. N'oubliez pas non plus les différentes faq disponibles sur ce site
    Et on poste ses codes entre balises [code] et [/code]

  3. #3
    Membre expérimenté
    Avatar de MPython Alaplancha
    Homme Profil pro
    Paysan à 3 francs six sous
    Inscrit en
    Juin 2018
    Messages
    870
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Pyrénées Orientales (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Paysan à 3 francs six sous
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Juin 2018
    Messages : 870
    Points : 1 522
    Points
    1 522
    Billets dans le blog
    4
    Par défaut
    Bonjour,
    ... et quelle est la demande concernant python?
    #Rien de nouveau sous le soleil, tout est vanité comme courir après le vent!
    Developpement pour Android avec Python3/Kivy/Buildozer

  4. #4
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Sve@r Voir le message
    Bonjour

    Ce n'est pas comme ça qu'on travaille. On ne demande pas à son programme de lire un truc que ledit programme a affiché et donc qu'il connait !!!
    Ton programme crée son calendrier en fonction des rendez-vous déjà enregistrés (Contrôleur) puis affiche ce calendrier (Vue). Ensuite il lit ce que demande l'utilisateur (Vue) et vérifie si sa demande est compatible avec le calendrier qu'il a en mémoire (Contrôleur). Si oui ok. Et au final il enregistre le calendrier dans un outil de stockage (bdd, fichier) => Modèle.
    C'est la programmation MVC.
    Désolé mais sachez que je ne suis pas du domaine
    et Que je viens de débuter python. J'ai plutôt avancé dans le script, tout ce qui est formulaire.. mais là je suis vraiment bloqué. Je pense que j'ai bien explicité ce que j'aimerai avoir comme résultat.

  5. #5
    Expert éminent sénior
    Avatar de Sve@r
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Février 2006
    Messages
    12 689
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Oise (Picardie)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Février 2006
    Messages : 12 689
    Points : 30 983
    Points
    30 983
    Billets dans le blog
    1
    Par défaut
    Citation Envoyé par Is El Voir le message
    Désolé mais sachez que je ne suis pas du domaine
    C'est justement pour ça que je prends du temps à t'expliquer comment on fait les choses et comment on ne les fait pas.

    Citation Envoyé par Is El Voir le message
    mais là je suis vraiment bloqué.
    Normal. Quand on avance dans la mauvaise direction, on finit tôt ou tard dans une impasse.

    Citation Envoyé par Is El Voir le message
    Je pense que j'ai bien explicité ce que j'aimerai avoir comme résultat.
    Très bien explicité en effet. Et moi je pense que j'ai bien explicité comment faire pour avoir ce résultat.
    Mon Tutoriel sur la programmation «Python»
    Mon Tutoriel sur la programmation «Shell»
    Sinon il y en a pleins d'autres. N'oubliez pas non plus les différentes faq disponibles sur ce site
    Et on poste ses codes entre balises [code] et [/code]

  6. #6
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Sve@r Voir le message
    C'est justement pour ça que je prends du temps à t'expliquer comment on fait les choses et comment on ne les fait pas.


    Normal. Quand on avance dans la mauvaise direction, on finit tôt ou tard dans une impasse.


    Très bien explicité en effet. Et moi je pense que j'ai bien explicité comment faire pour avoir ce résultat.
    Je pense que vous avez mal compris ma question. Je ne suis pas entrain de concevoir un calendrier, mais d'automatiser la recherche et la sélection de dates disponibles sur un calendrier d'un site de rendez-vous de visa.

  7. #7
    Expert confirmé Avatar de papajoker
    Homme Profil pro
    Développeur Web
    Inscrit en
    Septembre 2013
    Messages
    2 102
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nièvre (Bourgogne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Septembre 2013
    Messages : 2 102
    Points : 4 448
    Points
    4 448
    Par défaut
    bo,jour

    Il est bon de spécifier dès le début que tu fais du scraping avec telle bibliothèque ! sinon il est compliqué de comprendre ton problème (ou alors il faut tout lire...)

    Citation Envoyé par Is El Voir le message
    Je souhaiterais que le script, en cas d'indisponibilité de plage horaire, retourne aux dates disponibles, en sélectionne une autre et
    Question si vague en fait tu dis que tu désires revenir en arrière (puisque tu avais déjà sélectionné une date avant), ici il n'y a rien de compliquer sinon "rejouer" ton code (avec un paramètre légèrement différent) selectionne_date_vide(jour_mini=0)
    $moi= ( !== ) ? : ;

  8. #8
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par papajoker Voir le message
    bo,jour

    Il est bon de spécifier dès le début que tu fais du scraping avec telle bibliothèque ! sinon il est compliqué de comprendre ton problème (ou alors il faut tout lire...)


    Question si vague en fait tu dis que tu désires revenir en arrière (puisque tu avais déjà sélectionné une date avant), ici il n'y a rien de compliquer sinon "rejouer" ton code (avec un paramètre légèrement différent) selectionne_date_vide(jour_mini=0)
    Comment pourrais-je détecter uniquement les dates disponibles sur le calendrier?

  9. #9
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Hominidé Voir le message
    Bonjour,
    ... et quelle est la demande concernant python?
    Comment détecter les dates disponibles et en sélectionner une ?

  10. #10
    Expert éminent sénior
    Avatar de Sve@r
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Février 2006
    Messages
    12 689
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Oise (Picardie)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Février 2006
    Messages : 12 689
    Points : 30 983
    Points
    30 983
    Billets dans le blog
    1
    Par défaut
    Citation Envoyé par Is El Voir le message
    Je pense que vous avez mal compris ma question. Je ne suis pas entrain de concevoir un calendrier, mais d'automatiser la recherche et la sélection de dates disponibles sur un calendrier d'un site de rendez-vous de visa.
    Exact, j'avais mal compris. Je pensais que tu créais le calendrier. En fait tu vas lire un calendrier sur un site.

    Citation Envoyé par Is El Voir le message
    Je souhaiterais que le script, en cas d'indisponibilité de plage horaire, retourne aux dates disponibles, en sélectionne une autre et y choisisse une plage horaire disponible.
    Ca doit se gérer par une boucle. Boucle sur toutes les dates. Je prends la première elle est dispo alors ok je quitte la boucle et je la traite. Sinon je reste dans la boucle et vais lire la date suivante...

    Toutefois ce topic (automatiser des rendez-vous sur un site de visas) me rappelle une arnaque qui avait lieu il y a 2/3 ans (je sais pas si elle est toujours d'actualité) dans les départements 93/94/95/96 et autres de RP. Comme les préfectures ont trop de demandes de rendez-vous, elles ont (avaient) ouverts les rendez-vous en ligne. Les créneaux étaient proposés en début de mois pour le mois seulement.
    Et là, de petits malins récupéraient en début de mois tous les rendez-vous disponibles du mois puis allaient les revendre aux demandeurs de visa...
    Mon Tutoriel sur la programmation «Python»
    Mon Tutoriel sur la programmation «Shell»
    Sinon il y en a pleins d'autres. N'oubliez pas non plus les différentes faq disponibles sur ce site
    Et on poste ses codes entre balises [code] et [/code]

  11. #11
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Sve@r Voir le message
    Exact, j'avais mal compris. Je pensais que tu créais le calendrier. En fait tu vas lire un calendrier sur un site.


    Ca doit se gérer par une boucle. Boucle sur toutes les dates. Je prends la première elle est dispo alors ok je quitte la boucle et je la traite. Sinon je reste dans la boucle et vais lire la date suivante...

    Toutefois ce topic (automatiser des rendez-vous sur un site de visas) me rappelle une arnaque qui avait lieu il y a 2/3 ans (je sais pas si elle est toujours d'actualité) dans les départements 93/94/95/96 et autres de RP. Comme les préfectures ont trop de demandes de rendez-vous, elles ont (avaient) ouverts les rendez-vous en ligne. Les créneaux étaient proposés en début de mois pour le mois seulement.
    Et là, de petits malins récupéraient en début de mois tous les rendez-vous disponibles du mois puis allaient les revendre aux demandeurs de visa...
    Justement moi je suis demandeur de visa et c'est à cause de ces petits malins que je n'arrive pas à décrocher un rdv. Raison pour laquelle je veux créer mon script pour avoir mon rdv

  12. #12
    Expert éminent sénior
    Avatar de Sve@r
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Février 2006
    Messages
    12 689
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Oise (Picardie)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Février 2006
    Messages : 12 689
    Points : 30 983
    Points
    30 983
    Billets dans le blog
    1
    Par défaut
    Et quel outil utilises-tu pour lire le site et son calendrier? Habituellement Selenium est celui qui est conseillé...
    Mon Tutoriel sur la programmation «Python»
    Mon Tutoriel sur la programmation «Shell»
    Sinon il y en a pleins d'autres. N'oubliez pas non plus les différentes faq disponibles sur ce site
    Et on poste ses codes entre balises [code] et [/code]

  13. #13
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Sve@r Voir le message
    Et quel outil utilises-tu pour lire le site et son calendrier? Habituellement Selenium est celui qui est conseillé...
    Exactement je suis sur selenium webdriver en python

  14. #14
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Sve@r Voir le message
    Et quel outil utilises-tu pour lire le site et son calendrier? Habituellement Selenium est celui qui est conseillé...
    Alors , maintenant que vous savez de quoi il s'agit, pourriez-vous me donner un coup de pouce ? Par quoi commencer ? Comment boucler les dates pour en dégager celles disponibles ? Comment boucler aussi les plages horaires pour en détecter celles disponibles ?...

  15. #15
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Sve@r Voir le message
    Exact, j'avais mal compris. Je pensais que tu créais le calendrier. En fait tu vas lire un calendrier sur un site.


    Ca doit se gérer par une boucle. Boucle sur toutes les dates. Je prends la première elle est dispo alors ok je quitte la boucle et je la traite. Sinon je reste dans la boucle et vais lire la date suivante...

    Toutefois ce topic (automatiser des rendez-vous sur un site de visas) me rappelle une arnaque qui avait lieu il y a 2/3 ans (je sais pas si elle est toujours d'actualité) dans les départements 93/94/95/96 et autres de RP. Comme les préfectures ont trop de demandes de rendez-vous, elles ont (avaient) ouverts les rendez-vous en ligne. Les créneaux étaient proposés en début de mois pour le mois seulement.
    Et là, de petits malins récupéraient en début de mois tous les rendez-vous disponibles du mois puis allaient les revendre aux demandeurs de visa...
    PI je réside pas en France soyez rassuré!

  16. #16
    Expert confirmé Avatar de papajoker
    Homme Profil pro
    Développeur Web
    Inscrit en
    Septembre 2013
    Messages
    2 102
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nièvre (Bourgogne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Septembre 2013
    Messages : 2 102
    Points : 4 448
    Points
    4 448
    Par défaut
    Donc en fait, ta ligne de code au premier post n'est qu'un fake ? Tu n'as même pas commencé ?

    Comment boucler les dates pour en dégager celles disponibles ? Comment boucler aussi les plages horaires pour en détecter celles disponibles ?
    Ton problème n'est pas python mais de connaitre ton site web pour le faire fonctionner. Nous ne pouvons t'apporter de l'aide pour cela.

    Si ta ligne de code est bonne, alors il est plus que facile de boucler dessus. Et puisque tu sais le faire avec les dates, tu sais aussi le faire pour les horaires.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    available_dates = driver.find_elements(By.XPATH, "//div[@class='datepicker-days']/table/tbody/tr/td[not(contains(@class, 'disabled'))]")
    for date in available_dates:
        # faire test sur horaires pour cette date; cliquer() ?
        # ? horaires = driver.find_elements(???)
        si "ok", alors sortir cet horaire avec date
    $moi= ( !== ) ? : ;

  17. #17
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par papajoker Voir le message
    Donc en fait, ta ligne de code au premier post n'est qu'un fake ? Tu n'as même pas commencé ?


    Ton problème n'est pas python mais de connaitre ton site web pour le faire fonctionner. Nous ne pouvons t'apporter de l'aide pour cela.

    Si ta ligne de code est bonne, alors il est plus que facile de boucler dessus. Et puisque tu sais le faire avec les dates, tu sais aussi le faire pour les horaires.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    available_dates = driver.find_elements(By.XPATH, "//div[@class='datepicker-days']/table/tbody/tr/td[not(contains(@class, 'disabled'))]")
    for date in available_dates:
        # faire test sur horaires pour cette date; cliquer() ?
        # ? horaires = driver.find_elements(???)
        si "ok", alors sortir cet horaire avec date
    Non ce n'est pas fake , j'ai deja essayé ça mais ca ne marche pas
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    all_dates = driver.find_elements(By.XPATH, "//div[@class='datepicker-days']/table/tbody/tr/td")
     for date in all_dates: 
    if date !== driver.find_elements(By.XPATH, "//div[@class='datepicker-days']/table/tbody/tr/td[(contains(@class, 'disabled'))]"): 
    date.click() 
    break 
    else: 
    driver.refresh()
    Apparement , les dates sont gérées par une variable js qui est cachée quelquepart et je n'arrive pas à la trouver. Je ne suis pas du domaine .

  18. #18
    Expert éminent sénior
    Avatar de Sve@r
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Février 2006
    Messages
    12 689
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Oise (Picardie)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Février 2006
    Messages : 12 689
    Points : 30 983
    Points
    30 983
    Billets dans le blog
    1
    Par défaut
    Citation Envoyé par Is El Voir le message
    Non ce n'est pas fake , j'ai deja essayé ça mais ca ne marche pas
    Tu as essayé ce code tel quel? Sans tabulations sans rien pour identifier les blocs de travail? Non seulement ça ne peut pas marcher effectivement mais en plus il ne peut même pas s'exécuter !!!

    Citation Envoyé par Is El Voir le message
    Apparement , les dates sont gérées par une variable js qui est cachée quelquepart et je n'arrive pas à la trouver. Je ne suis pas du domaine .
    Nous non plus (on va rarement scrapper un site web) mais déjà rajouter du print(date, type(date)) est un bon début pour arriver à trouver où se cache l'info...
    Accessoirement l'opérateur !== n'existe pas en Python. Quant au fait que tu compares date (un truc faisant partie d'une liste, liste retournée par driver.find_elements()) avec un autre driver.find_elements()... Ben oui, si driver.find_elements() retourne une liste, alors un élément de la liste ne peut pas être égal à l'ensemble de la liste !!!
    Mon Tutoriel sur la programmation «Python»
    Mon Tutoriel sur la programmation «Shell»
    Sinon il y en a pleins d'autres. N'oubliez pas non plus les différentes faq disponibles sur ce site
    Et on poste ses codes entre balises [code] et [/code]

  19. #19
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Sve@r Voir le message
    Tu as essayé ce code tel quel? Sans tabulations sans rien pour identifier les blocs de travail? Non seulement ça ne peut pas marcher effectivement mais en plus il ne peut même pas s'exécuter !!!


    Nous non plus (on va rarement scrapper un site web) mais déjà rajouter du print(date, type(date)) est un bon début pour arriver à trouver où se cache l'info...
    Accessoirement l'opérateur !== n'existe pas en Python. Quant au fait que tu compares date (un truc faisant partie d'une liste, liste retournée par driver.find_elements()) avec un autre driver.find_elements()... Ben oui, si driver.find_elements() retourne une liste, alors un élément de la liste ne peut pas être égal à l'ensemble de la liste !!!
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    import time
    from selenium import webdriver
    from selenium.webdriver.chrome.service import Service
    from selenium.webdriver.common.by import By
    from selenium.webdriver import ActionChains
    from selenium.webdriver.support.ui import Select
    from selenium.webdriver.support import expected_conditions as EC
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    s = Service('C:\Program Files (x86)\chromedriver.exe')
    driver = webdriver.Chrome(service=s)
    driver.get('https://blsspainmorocco.com/index.php')
    driver.maximize_window()
    time.sleep(3)
     
    driver.find_element(By.CLASS_NAME, 'popupCloseIcon').click()
    time.sleep(3)
     
    main = driver.find_element(By.XPATH, "//a[normalize-space()='Réservez rendez-vous']")
    center = driver.find_element(By.XPATH, "//a[normalize-space()='Pour le Centre Demande de Visa Schengen']")
    book = driver.find_element(By.XPATH, "//a[@href='login.php'][normalize-space()='Réservez votre rendez-vous']")
     
    actions = ActionChains(driver)
     
    actions.move_to_element(main).move_to_element(center).move_to_element(book).click().perform()
    time.sleep(3)
     
    driver.find_element(By.NAME, 'user_email').send_keys('test@gmail.com')
    time.sleep(3)
    driver.find_element(By.NAME, 'user_password').send_keys('testtest')
    time.sleep(3)
     
    iframe = driver.find_element(By.XPATH, "//iframe[@title='Widget contenant une case à cocher pour le défi de sécurité hCaptcha']")
    driver.switch_to.frame(iframe)
    driver.find_element(By.ID, 'checkbox').click()
    driver.switch_to.default_content()
     
    breakpoint()
     
    driver.find_element(By.XPATH, "//*[@id='al_login']/div/div[4]/input").click()
    time.sleep(3)
     
    driver.find_element(By.XPATH, "//*[@id='IDBodyPanelapp']/div[1]").click()
    time.sleep(3)
     
    driver.find_element(By.ID, 'app_type2').click()
    time.sleep(3)
     
    center = driver.find_element(By.ID, 'centre')
    drp = Select(center)
    drp.select_by_visible_text('Casablanca')
    driver.find_element(By.XPATH, "//*[@id='slideup_div']/div[2]/div[2]/div[3]/div[2]/div[2]/div/div[1]").click()
    time.sleep(3)
    breakpoint()
     
    previous_visa = driver.find_element(By.ID, 'previous_visa_yes_no')
    drp = Select(previous_visa)
    drp.select_by_visible_text('Yes')
    driver.find_element(By.XPATH, "/html/body/div[6]/div/div[1]").click()
    time.sleep(3)
     
    category = driver.find_element(By.ID, 'category')
    drp = Select(category)
    drp.select_by_visible_text('Normal')
    time.sleep(3)
     
    driver.find_element(By.ID, 'verification_code').click()
    driver.find_element(By.XPATH, "//*[@id='IDBodyPanelapp']/div[1]").click()
    breakpoint()
     
    iframe2 = driver.find_element(By.XPATH, "//iframe[@title='Widget contenant une case à cocher pour le défi de sécurité hCaptcha']")
    driver.switch_to.frame(iframe2)
    driver.find_element(By.XPATH, "//*[@id='checkbox']").click()
    breakpoint()
    driver.switch_to.default_content()
    driver.find_element(By.XPATH, "//input[@name='save']").click()
    driver.find_element(By.XPATH, "//*[@id='IDBodyPanelapp']/div[1]").click()
    time.sleep(3)
    driver.find_element(By.XPATH, "//button[normalize-space()='I agree to provide my Consent']").click()
     
    driver.find_element(By.XPATH, "//*[@id='app_date']").click()
     
    available_dates = driver.find_elements(By.XPATH, "//div[@class='datepicker-days']/table/tbody/tr/td[not(contains(@class, 'disabled'))]")
    for date in available_dates:
        if date == driver.find_element(By.XPATH, "//div[@class='datepicker-days']/table/tbody/tr/td[not(contains(@class, 'disabled'))]"):
            date.click()
            break
        else:
            driver.refresh()
    Voici la globalité de ce que j'ai su accomplir. je ne peux pas faire du print(date, type(date)) parce que les dates ne sont pas disponibles pour les afficher. personne ne connait les créneaux de disponibilités des dates. après quelque recherches, j'ai su que les dates sont gérées par du js caché quelquepart dans le site. j'y suis aller fouiller et j'ai trouvé le code suivant

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    1082
    1083
    1084
    1085
    1086
    1087
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    1100
    1101
    1102
    1103
    1104
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
    1124
    1125
    1126
    1127
    1128
    1129
    1130
    1131
    1132
    1133
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    1159
    1160
    1161
    1162
    1163
    1164
    1165
    1166
    1167
    1168
    1169
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    1177
    1178
    1179
    1180
    1181
    1182
    1183
    1184
    1185
    1186
    1187
    1188
    1189
    1190
    1191
    1192
    1193
    1194
    1195
    1196
    1197
    1198
    1199
    1200
    1201
    1202
    1203
    1204
    1205
    1206
    1207
    1208
    1209
    1210
    1211
    1212
    1213
    1214
    1215
    1216
    1217
    1218
    1219
    1220
    1221
    1222
    1223
    1224
    1225
    1226
    1227
    1228
    1229
    1230
    1231
    1232
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
    1243
    1244
    1245
    1246
    1247
    1248
    1249
    1250
    1251
    1252
    1253
    1254
    1255
    1256
    1257
    1258
    1259
    1260
    1261
    1262
    1263
    1264
    1265
    1266
    1267
    1268
    1269
    1270
    1271
    1272
    1273
    1274
    1275
    1276
    1277
    1278
    1279
    1280
    1281
    1282
    1283
    1284
    1285
    1286
    1287
    1288
    1289
    1290
    1291
    1292
    1293
    1294
    1295
    1296
    1297
    1298
    1299
    1300
    1301
    1302
    1303
    1304
    1305
    1306
    1307
    1308
    1309
    1310
    1311
    1312
    1313
    1314
    1315
    1316
    1317
    1318
    1319
    1320
    1321
    1322
    1323
    1324
    1325
    1326
    1327
    1328
    1329
    1330
    1331
    1332
    1333
    1334
    1335
    1336
    1337
    1338
    1339
    1340
    1341
    1342
    1343
    1344
    1345
    1346
    1347
    1348
    1349
    1350
    1351
    1352
    1353
    1354
    1355
    1356
    1357
    1358
    1359
    1360
    1361
    1362
    1363
    1364
    1365
    1366
    1367
    1368
    1369
    1370
    1371
    1372
    1373
    1374
    1375
    1376
    1377
    1378
    1379
    1380
    1381
    1382
    1383
    1384
    1385
    1386
    1387
    1388
    1389
    1390
    1391
    1392
    1393
    1394
    1395
    /* =========================================================
     * bootstrap-datepicker.js
     * http://www.eyecon.ro/bootstrap-datepicker
     * =========================================================
     * Copyright 2012 Stefan Petre
     * Improvements by Andrew Rowls
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     * ========================================================= */
     
    (function( $ ) {
     
    	var $window = $(window);
     
    	function UTCDate(){
    		return new Date(Date.UTC.apply(Date, arguments));
    	}
    	function UTCToday(){
    		var today = new Date();
    		return UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
    	}
     
     
    	// Picker object
     
    	var Datepicker = function(element, options) {
    		var that = this;
     
    		this._process_options(options);
     
    		this.element = $(element);
    		this.isInline = false;
    		this.isInput = this.element.is('input');
    		this.component = this.element.is('.date') ? this.element.find('.add-on, .btn') : false;
    		this.hasInput = this.component && this.element.find('input').length;
    		if(this.component && this.component.length === 0)
    			this.component = false;
     
    		this.picker = $(DPGlobal.template);
    		this._buildEvents();
    		this._attachEvents();
     
    		if(this.isInline) {
    			this.picker.addClass('datepicker-inline').appendTo(this.element);
    		} else {
    			this.picker.addClass('datepicker-dropdown dropdown-menu');
    		}
     
    		if (this.o.rtl){
    			this.picker.addClass('datepicker-rtl');
    			this.picker.find('.prev i, .next i')
    						.toggleClass('icon-arrow-left icon-arrow-right');
    		}
     
     
    		this.viewMode = this.o.startView;
     
    		if (this.o.calendarWeeks)
    			this.picker.find('tfoot th.today')
    						.attr('colspan', function(i, val){
    							return parseInt(val) + 1;
    						});
     
    		this._allow_update = false;
     
    		this.setStartDate(this._o.startDate);
    		this.setEndDate(this._o.endDate);
    		this.setDaysOfWeekDisabled(this.o.daysOfWeekDisabled);
     
    		this.fillDow();
    		this.fillMonths();
     
    		this._allow_update = true;
     
    		this.update();
    		this.showMode();
     
    		if(this.isInline) {
    			this.show();
    		}
    	};
     
    	Datepicker.prototype = {
    		constructor: Datepicker,
     
    		_process_options: function(opts){
    			// Store raw options for reference
    			this._o = $.extend({}, this._o, opts);
    			// Processed options
    			var o = this.o = $.extend({}, this._o);
     
    			// Check if "de-DE" style date is available, if not language should
    			// fallback to 2 letter code eg "de"
    			var lang = o.language;
    			if (!dates[lang]) {
    				lang = lang.split('-')[0];
    				if (!dates[lang])
    					lang = defaults.language;
    			}
    			o.language = lang;
     
    			switch(o.startView){
    				case 2:
    				case 'decade':
    					o.startView = 2;
    					break;
    				case 1:
    				case 'year':
    					o.startView = 1;
    					break;
    				default:
    					o.startView = 0;
    			}
     
    			switch (o.minViewMode) {
    				case 1:
    				case 'months':
    					o.minViewMode = 1;
    					break;
    				case 2:
    				case 'years':
    					o.minViewMode = 2;
    					break;
    				default:
    					o.minViewMode = 0;
    			}
     
    			o.startView = Math.max(o.startView, o.minViewMode);
     
    			o.weekStart %= 7;
    			o.weekEnd = ((o.weekStart + 6) % 7);
     
    			var format = DPGlobal.parseFormat(o.format);
    			if (o.startDate !== -Infinity) {
    				if (!!o.startDate) {
    					if (o.startDate instanceof Date)
    						o.startDate = this._local_to_utc(this._zero_time(o.startDate));
    					else
    						o.startDate = DPGlobal.parseDate(o.startDate, format, o.language);
    				} else {
    					o.startDate = -Infinity;
    				}
    			}
    			if (o.endDate !== Infinity) {
    				if (!!o.endDate) {
    					if (o.endDate instanceof Date)
    						o.endDate = this._local_to_utc(this._zero_time(o.endDate));
    					else
    						o.endDate = DPGlobal.parseDate(o.endDate, format, o.language);
    				} else {
    					o.endDate = Infinity;
    				}
    			}
     
    			o.daysOfWeekDisabled = o.daysOfWeekDisabled||[];
    			if (!$.isArray(o.daysOfWeekDisabled))
    				o.daysOfWeekDisabled = o.daysOfWeekDisabled.split(/[,\s]*/);
    			o.daysOfWeekDisabled = $.map(o.daysOfWeekDisabled, function (d) {
    				return parseInt(d, 10);
    			});
     
    			var plc = String(o.orientation).toLowerCase().split(/\s+/g),
    				_plc = o.orientation.toLowerCase();
    			plc = $.grep(plc, function(word){
    				return (/^auto|left|right|top|bottom$/).test(word);
    			});
    			o.orientation = {x: 'auto', y: 'auto'};
    			if (!_plc || _plc === 'auto')
    				; // no action
    			else if (plc.length === 1){
    				switch(plc[0]){
    					case 'top':
    					case 'bottom':
    						o.orientation.y = plc[0];
    						break;
    					case 'left':
    					case 'right':
    						o.orientation.x = plc[0];
    						break;
    				}
    			}
    			else {
    				_plc = $.grep(plc, function(word){
    					return (/^left|right$/).test(word);
    				});
    				o.orientation.x = _plc[0] || 'auto';
     
    				_plc = $.grep(plc, function(word){
    					return (/^top|bottom$/).test(word);
    				});
    				o.orientation.y = _plc[0] || 'auto';
    			}
    		},
    		_events: [],
    		_secondaryEvents: [],
    		_applyEvents: function(evs){
    			for (var i=0, el, ev; i<evs.length; i++){
    				el = evs[i][0];
    				ev = evs[i][1];
    				el.on(ev);
    			}
    		},
    		_unapplyEvents: function(evs){
    			for (var i=0, el, ev; i<evs.length; i++){
    				el = evs[i][0];
    				ev = evs[i][1];
    				el.off(ev);
    			}
    		},
    		_buildEvents: function(){
    			if (this.isInput) { // single input
    				this._events = [
    					[this.element, {
    						focus: $.proxy(this.show, this),
    						keyup: $.proxy(this.update, this),
    						keydown: $.proxy(this.keydown, this)
    					}]
    				];
    			}
    			else if (this.component && this.hasInput){ // component: input + button
    				this._events = [
    					// For components that are not readonly, allow keyboard nav
    					[this.element.find('input'), {
    						focus: $.proxy(this.show, this),
    						keyup: $.proxy(this.update, this),
    						keydown: $.proxy(this.keydown, this)
    					}],
    					[this.component, {
    						click: $.proxy(this.show, this)
    					}]
    				];
    			}
    			else if (this.element.is('div')) {  // inline datepicker
    				this.isInline = true;
    			}
    			else {
    				this._events = [
    					[this.element, {
    						click: $.proxy(this.show, this)
    					}]
    				];
    			}
     
    			this._secondaryEvents = [
    				[this.picker, {
    					click: $.proxy(this.click, this)
    				}],
    				[$(window), {
    					resize: $.proxy(this.place, this)
    				}],
    				[$(document), {
    					mousedown: $.proxy(function (e) {
    						// Clicked outside the datepicker, hide it
    						if (!(
    							this.element.is(e.target) ||
    							this.element.find(e.target).length ||
    							this.picker.is(e.target) ||
    							this.picker.find(e.target).length
    						)) {
    							this.hide();
    						}
    					}, this)
    				}]
    			];
    		},
    		_attachEvents: function(){
    			this._detachEvents();
    			this._applyEvents(this._events);
    		},
    		_detachEvents: function(){
    			this._unapplyEvents(this._events);
    		},
    		_attachSecondaryEvents: function(){
    			this._detachSecondaryEvents();
    			this._applyEvents(this._secondaryEvents);
    		},
    		_detachSecondaryEvents: function(){
    			this._unapplyEvents(this._secondaryEvents);
    		},
    		_trigger: function(event, altdate){
    			var date = altdate || this.date,
    				local_date = this._utc_to_local(date);
     
    			this.element.trigger({
    				type: event,
    				date: local_date,
    				format: $.proxy(function(altformat){
    					var format = altformat || this.o.format;
    					return DPGlobal.formatDate(date, format, this.o.language);
    				}, this)
    			});
    		},
     
    		show: function(e) {
    			if (!this.isInline)
    				this.picker.appendTo('body');
    			this.picker.show();
    			this.height = this.component ? this.component.outerHeight() : this.element.outerHeight();
    			this.place();
    			this._attachSecondaryEvents();
    			if (e) {
    				e.preventDefault();
    			}
    			this._trigger('show');
    		},
     
    		hide: function(e){
    			if(this.isInline) return;
    			if (!this.picker.is(':visible')) return;
    			this.picker.hide().detach();
    			this._detachSecondaryEvents();
    			this.viewMode = this.o.startView;
    			this.showMode();
     
    			if (
    				this.o.forceParse &&
    				(
    					this.isInput && this.element.val() ||
    					this.hasInput && this.element.find('input').val()
    				)
    			)
    				this.setValue();
    			this._trigger('hide');
    		},
     
    		remove: function() {
    			this.hide();
    			this._detachEvents();
    			this._detachSecondaryEvents();
    			this.picker.remove();
    			delete this.element.data().datepicker;
    			if (!this.isInput) {
    				delete this.element.data().date;
    			}
    		},
     
    		_utc_to_local: function(utc){
    			return new Date(utc.getTime() + (utc.getTimezoneOffset()*60000));
    		},
    		_local_to_utc: function(local){
    			return new Date(local.getTime() - (local.getTimezoneOffset()*60000));
    		},
    		_zero_time: function(local){
    			return new Date(local.getFullYear(), local.getMonth(), local.getDate());
    		},
    		_zero_utc_time: function(utc){
    			return new Date(Date.UTC(utc.getUTCFullYear(), utc.getUTCMonth(), utc.getUTCDate()));
    		},
     
    		getDate: function() {
    			return this._utc_to_local(this.getUTCDate());
    		},
     
    		getUTCDate: function() {
    			return this.date;
    		},
     
    		setDate: function(d) {
    			this.setUTCDate(this._local_to_utc(d));
    		},
     
    		setUTCDate: function(d) {
    			this.date = d;
    			this.setValue();
    		},
     
    		setValue: function() {
    			var formatted = this.getFormattedDate();
    			if (!this.isInput) {
    				if (this.component){
    					this.element.find('input').val(formatted).change();
    				}
    			} else {
    				this.element.val(formatted).change();
    			}
    		},
     
    		getFormattedDate: function(format) {
    			if (format === undefined)
    				format = this.o.format;
    			return DPGlobal.formatDate(this.date, format, this.o.language);
    		},
     
    		setStartDate: function(startDate){
    			this._process_options({startDate: startDate});
    			this.update();
    			this.updateNavArrows();
    		},
     
    		setEndDate: function(endDate){
    			this._process_options({endDate: endDate});
    			this.update();
    			this.updateNavArrows();
    		},
     
    		setDaysOfWeekDisabled: function(daysOfWeekDisabled){
    			this._process_options({daysOfWeekDisabled: daysOfWeekDisabled});
    			this.update();
    			this.updateNavArrows();
    		},
     
    		place: function(){
    						if(this.isInline) return;
    			var calendarWidth = this.picker.outerWidth(),
    				calendarHeight = this.picker.outerHeight(),
    				visualPadding = 10,
    				windowWidth = $window.width(),
    				windowHeight = $window.height(),
    				scrollTop = $window.scrollTop();
     
    			var zIndex = parseInt(this.element.parents().filter(function() {
    							return $(this).css('z-index') != 'auto';
    						}).first().css('z-index'))+10;
    			var offset = this.component ? this.component.parent().offset() : this.element.offset();
    			var height = this.component ? this.component.outerHeight(true) : this.element.outerHeight(false);
    			var width = this.component ? this.component.outerWidth(true) : this.element.outerWidth(false);
    			var left = offset.left,
    				top = offset.top;
     
    			this.picker.removeClass(
    				'datepicker-orient-top datepicker-orient-bottom '+
    				'datepicker-orient-right datepicker-orient-left'
    			);
     
    			if (this.o.orientation.x !== 'auto') {
    				this.picker.addClass('datepicker-orient-' + this.o.orientation.x);
    				if (this.o.orientation.x === 'right')
    					left -= calendarWidth - width;
    			}
    			// auto x orientation is best-placement: if it crosses a window
    			// edge, fudge it sideways
    			else {
    				// Default to left
    				this.picker.addClass('datepicker-orient-left');
    				if (offset.left < 0)
    					left -= offset.left - visualPadding;
    				else if (offset.left + calendarWidth > windowWidth)
    					left = windowWidth - calendarWidth - visualPadding;
    			}
     
    			// auto y orientation is best-situation: top or bottom, no fudging,
    			// decision based on which shows more of the calendar
    			var yorient = this.o.orientation.y,
    				top_overflow, bottom_overflow;
    			if (yorient === 'auto') {
    				top_overflow = -scrollTop + offset.top - calendarHeight;
    				bottom_overflow = scrollTop + windowHeight - (offset.top + height + calendarHeight);
    				if (Math.max(top_overflow, bottom_overflow) === bottom_overflow)
    					yorient = 'top';
    				else
    					yorient = 'bottom';
    			}
    			this.picker.addClass('datepicker-orient-' + yorient);
    			if (yorient === 'top')
    				top += height;
    			else
    				top -= calendarHeight + parseInt(this.picker.css('padding-top'));
     
    			this.picker.css({
    				top: top,
    				left: left,
    				zIndex: zIndex
    			});
    		},
     
    		_allow_update: true,
    		update: function(){
    			if (!this._allow_update) return;
     
    			var oldDate = new Date(this.date),
    				date, fromArgs = false;
    			if(arguments && arguments.length && (typeof arguments[0] === 'string' || arguments[0] instanceof Date)) {
    				date = arguments[0];
    				if (date instanceof Date)
    					date = this._local_to_utc(date);
    				fromArgs = true;
    			} else {
    				date = this.isInput ? this.element.val() : this.element.data('date') || this.element.find('input').val();
    				delete this.element.data().date;
    			}
     
    			this.date = DPGlobal.parseDate(date, this.o.format, this.o.language);
     
    			if (fromArgs) {
    				// setting date by clicking
    				this.setValue();
    			} else if (date) {
    				// setting date by typing
    				if (oldDate.getTime() !== this.date.getTime())
    					this._trigger('changeDate');
    			} else {
    				// clearing date
    				this._trigger('clearDate');
    			}
     
    			if (this.date < this.o.startDate) {
    				this.viewDate = new Date(this.o.startDate);
    				this.date = new Date(this.o.startDate);
    			} else if (this.date > this.o.endDate) {
    				this.viewDate = new Date(this.o.endDate);
    				this.date = new Date(this.o.endDate);
    			} else {
    				this.viewDate = new Date(this.date);
    				this.date = new Date(this.date);
    			}
    			this.fill();
    		},
     
    		fillDow: function(){
    			var dowCnt = this.o.weekStart,
    			html = '<tr>';
    			if(this.o.calendarWeeks){
    				var cell = '<th class="cw">&nbsp;</th>';
    				html += cell;
    				this.picker.find('.datepicker-days thead tr:first-child').prepend(cell);
    			}
    			while (dowCnt < this.o.weekStart + 7) {
    				html += '<th class="dow">'+dates[this.o.language].daysMin[(dowCnt++)%7]+'</th>';
    			}
    			html += '</tr>';
    			this.picker.find('.datepicker-days thead').append(html);
    		},
     
    		fillMonths: function(){
    			var html = '',
    			i = 0;
    			while (i < 12) {
    				html += '<span class="month">'+dates[this.o.language].monthsShort[i++]+'</span>';
    			}
    			this.picker.find('.datepicker-months td').html(html);
    		},
     
    		setRange: function(range){
    			if (!range || !range.length)
    				delete this.range;
    			else
    				this.range = $.map(range, function(d){ return d.valueOf(); });
    			this.fill();
    		},
     
    		getClassNames: function(date){
    			var cls = [],
    				year = this.viewDate.getUTCFullYear(),
    				month = this.viewDate.getUTCMonth(),
    				currentDate = this.date.valueOf(),
    				today = new Date();
    			if (date.getUTCFullYear() < year || (date.getUTCFullYear() == year && date.getUTCMonth() < month)) {
    				cls.push('old');
    			} else if (date.getUTCFullYear() > year || (date.getUTCFullYear() == year && date.getUTCMonth() > month)) {
    				cls.push('new');
    			}
    			// Compare internal UTC date with local today, not UTC today
    			if (this.o.todayHighlight &&
    				date.getUTCFullYear() == today.getFullYear() &&
    				date.getUTCMonth() == today.getMonth() &&
    				date.getUTCDate() == today.getDate()) {
    				cls.push('today');
    			}
    			if (currentDate && date.valueOf() == currentDate) {
    				cls.push('active');
    			}
    			if (date.valueOf() < this.o.startDate || date.valueOf() > this.o.endDate ||
    				$.inArray(date.getUTCDay(), this.o.daysOfWeekDisabled) !== -1) {
    				cls.push('disabled');
    			}
    			if (this.range){
    				if (date > this.range[0] && date < this.range[this.range.length-1]){
    					cls.push('range');
    				}
    				if ($.inArray(date.valueOf(), this.range) != -1){
    					cls.push('selected');
    				}
    			}
    			return cls;
    		},
     
    		fill: function() {
    			var d = new Date(this.viewDate),
    				year = d.getUTCFullYear(),
    				month = d.getUTCMonth(),
    				startYear = this.o.startDate !== -Infinity ? this.o.startDate.getUTCFullYear() : -Infinity,
    				startMonth = this.o.startDate !== -Infinity ? this.o.startDate.getUTCMonth() : -Infinity,
    				endYear = this.o.endDate !== Infinity ? this.o.endDate.getUTCFullYear() : Infinity,
    				endMonth = this.o.endDate !== Infinity ? this.o.endDate.getUTCMonth() : Infinity,
    				currentDate = this.date && this.date.valueOf(),
    				tooltip;
    			this.picker.find('.datepicker-days thead th.datepicker-switch')
    						.text(dates[this.o.language].months[month]+' '+year);
    			this.picker.find('tfoot th.today')
    						.text(dates[this.o.language].today)
    						.toggle(this.o.todayBtn !== false);
    			this.picker.find('tfoot th.clear')
    						.text(dates[this.o.language].clear)
    						.toggle(this.o.clearBtn !== false);
    			this.updateNavArrows();
    			this.fillMonths();
    			var prevMonth = UTCDate(year, month-1, 28,0,0,0,0),
    				day = DPGlobal.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
    			prevMonth.setUTCDate(day);
    			prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.o.weekStart + 7)%7);
    			var nextMonth = new Date(prevMonth);
    			nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
    			nextMonth = nextMonth.valueOf();
    			var html = [];
    			var clsName;
    			while(prevMonth.valueOf() < nextMonth) {
    				if (prevMonth.getUTCDay() == this.o.weekStart) {
    					html.push('<tr>');
    					if(this.o.calendarWeeks){
    						// ISO 8601: First week contains first thursday.
    						// ISO also states week starts on Monday, but we can be more abstract here.
    						var
    							// Start of current week: based on weekstart/current date
    							ws = new Date(+prevMonth + (this.o.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
    							// Thursday of this week
    							th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
    							// First Thursday of year, year from thursday
    							yth = new Date(+(yth = UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
    							// Calendar week: ms between thursdays, div ms per day, div 7 days
    							calWeek =  (th - yth) / 864e5 / 7 + 1;
    						html.push('<td class="cw">'+ calWeek +'</td>');
     
    					}
    				}
    				clsName = this.getClassNames(prevMonth);
    				clsName.push('day');
     
    				if (this.o.beforeShowDay !== $.noop){
    					var before = this.o.beforeShowDay(this._utc_to_local(prevMonth));
    					if (before === undefined)
    						before = {};
    					else if (typeof(before) === 'boolean')
    						before = {enabled: before};
    					else if (typeof(before) === 'string')
    						before = {classes: before};
    					if (before.enabled === false)
    						clsName.push('disabled');
    					if (before.classes)
    						clsName = clsName.concat(before.classes.split(/\s+/));
    					if (before.tooltip)
    						tooltip = before.tooltip;
    				}
     
    				clsName = $.unique(clsName);
    				html.push('<td class="'+clsName.join(' ')+'"' + (tooltip ? ' title="'+tooltip+'"' : '') + '>'+prevMonth.getUTCDate() + '</td>');
    				if (prevMonth.getUTCDay() == this.o.weekEnd) {
    					html.push('</tr>');
    				}
    				prevMonth.setUTCDate(prevMonth.getUTCDate()+1);
    			}
    			this.picker.find('.datepicker-days tbody').empty().append(html.join(''));
    			var currentYear = this.date && this.date.getUTCFullYear();
     
    			var months = this.picker.find('.datepicker-months')
    						.find('th:eq(1)')
    							.text(year)
    							.end()
    						.find('span').removeClass('active');
    			if (currentYear && currentYear == year) {
    				months.eq(this.date.getUTCMonth()).addClass('active');
    			}
    			if (year < startYear || year > endYear) {
    				months.addClass('disabled');
    			}
    			if (year == startYear) {
    				months.slice(0, startMonth).addClass('disabled');
    			}
    			if (year == endYear) {
    				months.slice(endMonth+1).addClass('disabled');
    			}
     
    			html = '';
    			year = parseInt(year/10, 10) * 10;
    			var yearCont = this.picker.find('.datepicker-years')
    								.find('th:eq(1)')
    									.text(year + '-' + (year + 9))
    									.end()
    								.find('td');
    			year -= 1;
    			for (var i = -1; i < 11; i++) {
    				html += '<span class="year'+(i == -1 ? ' old' : i == 10 ? ' new' : '')+(currentYear == year ? ' active' : '')+(year < startYear || year > endYear ? ' disabled' : '')+'">'+year+'</span>';
    				year += 1;
    			}
    			yearCont.html(html);
    		},
     
    		updateNavArrows: function() {
    			if (!this._allow_update) return;
     
    			var d = new Date(this.viewDate),
    				year = d.getUTCFullYear(),
    				month = d.getUTCMonth();
    			switch (this.viewMode) {
    				case 0:
    					if (this.o.startDate !== -Infinity && year <= this.o.startDate.getUTCFullYear() && month <= this.o.startDate.getUTCMonth()) {
    						this.picker.find('.prev').css({visibility: 'hidden'});
    					} else {
    						this.picker.find('.prev').css({visibility: 'visible'});
    					}
    					if (this.o.endDate !== Infinity && year >= this.o.endDate.getUTCFullYear() && month >= this.o.endDate.getUTCMonth()) {
    						this.picker.find('.next').css({visibility: 'hidden'});
    					} else {
    						this.picker.find('.next').css({visibility: 'visible'});
    					}
    					break;
    				case 1:
    				case 2:
    					if (this.o.startDate !== -Infinity && year <= this.o.startDate.getUTCFullYear()) {
    						this.picker.find('.prev').css({visibility: 'hidden'});
    					} else {
    						this.picker.find('.prev').css({visibility: 'visible'});
    					}
    					if (this.o.endDate !== Infinity && year >= this.o.endDate.getUTCFullYear()) {
    						this.picker.find('.next').css({visibility: 'hidden'});
    					} else {
    						this.picker.find('.next').css({visibility: 'visible'});
    					}
    					break;
    			}
    		},
     
    		click: function(e) {
    			e.preventDefault();
    			var target = $(e.target).closest('span, td, th');
    			if (target.length == 1) {
    				switch(target[0].nodeName.toLowerCase()) {
    					case 'th':
    						switch(target[0].className) {
    							case 'datepicker-switch':
    								this.showMode(1);
    								break;
    							case 'prev':
    							case 'next':
    								var dir = DPGlobal.modes[this.viewMode].navStep * (target[0].className == 'prev' ? -1 : 1);
    								switch(this.viewMode){
    									case 0:
    										this.viewDate = this.moveMonth(this.viewDate, dir);
    										this._trigger('changeMonth', this.viewDate);
    										break;
    									case 1:
    									case 2:
    										this.viewDate = this.moveYear(this.viewDate, dir);
    										if (this.viewMode === 1)
    											this._trigger('changeYear', this.viewDate);
    										break;
    								}
    								this.fill();
    								break;
    							case 'today':
    								var date = new Date();
    								date = UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
     
    								this.showMode(-2);
    								var which = this.o.todayBtn == 'linked' ? null : 'view';
    								this._setDate(date, which);
    								break;
    							case 'clear':
    								var element;
    								if (this.isInput)
    									element = this.element;
    								else if (this.component)
    									element = this.element.find('input');
    								if (element)
    									element.val("").change();
    								this._trigger('changeDate');
    								this.update();
    								if (this.o.autoclose)
    									this.hide();
    								break;
    						}
    						break;
    					case 'span':
    						if (!target.is('.disabled')) {
    							this.viewDate.setUTCDate(1);
    							if (target.is('.month')) {
    								var day = 1;
    								var month = target.parent().find('span').index(target);
    								var year = this.viewDate.getUTCFullYear();
    								this.viewDate.setUTCMonth(month);
    								this._trigger('changeMonth', this.viewDate);
    								if (this.o.minViewMode === 1) {
    									this._setDate(UTCDate(year, month, day,0,0,0,0));
    								}
    							} else {
    								var year = parseInt(target.text(), 10)||0;
    								var day = 1;
    								var month = 0;
    								this.viewDate.setUTCFullYear(year);
    								this._trigger('changeYear', this.viewDate);
    								if (this.o.minViewMode === 2) {
    									this._setDate(UTCDate(year, month, day,0,0,0,0));
    								}
    							}
    							this.showMode(-1);
    							this.fill();
    						}
    						break;
    					case 'td':
    						if (target.is('.day') && !target.is('.disabled')){
    							var day = parseInt(target.text(), 10)||1;
    							var year = this.viewDate.getUTCFullYear(),
    								month = this.viewDate.getUTCMonth();
    							if (target.is('.old')) {
    								if (month === 0) {
    									month = 11;
    									year -= 1;
    								} else {
    									month -= 1;
    								}
    							} else if (target.is('.new')) {
    								if (month == 11) {
    									month = 0;
    									year += 1;
    								} else {
    									month += 1;
    								}
    							}
    							this._setDate(UTCDate(year, month, day,0,0,0,0));
    						}
    						break;
    				}
    			}
    		},
     
    		_setDate: function(date, which){
    			if (!which || which == 'date')
    				this.date = new Date(date);
    			if (!which || which  == 'view')
    				this.viewDate = new Date(date);
    			this.fill();
    			this.setValue();
    			this._trigger('changeDate');
    			var element;
    			if (this.isInput) {
    				element = this.element;
    			} else if (this.component){
    				element = this.element.find('input');
    			}
    			if (element) {
    				element.change();
    			}
    			if (this.o.autoclose && (!which || which == 'date')) {
    				this.hide();
    			}
    		},
     
    		moveMonth: function(date, dir){
    			if (!dir) return date;
    			var new_date = new Date(date.valueOf()),
    				day = new_date.getUTCDate(),
    				month = new_date.getUTCMonth(),
    				mag = Math.abs(dir),
    				new_month, test;
    			dir = dir > 0 ? 1 : -1;
    			if (mag == 1){
    				test = dir == -1
    					// If going back one month, make sure month is not current month
    					// (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
    					? function(){ return new_date.getUTCMonth() == month; }
    					// If going forward one month, make sure month is as expected
    					// (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
    					: function(){ return new_date.getUTCMonth() != new_month; };
    				new_month = month + dir;
    				new_date.setUTCMonth(new_month);
    				// Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
    				if (new_month < 0 || new_month > 11)
    					new_month = (new_month + 12) % 12;
    			} else {
    				// For magnitudes >1, move one month at a time...
    				for (var i=0; i<mag; i++)
    					// ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
    					new_date = this.moveMonth(new_date, dir);
    				// ...then reset the day, keeping it in the new month
    				new_month = new_date.getUTCMonth();
    				new_date.setUTCDate(day);
    				test = function(){ return new_month != new_date.getUTCMonth(); };
    			}
    			// Common date-resetting loop -- if date is beyond end of month, make it
    			// end of month
    			while (test()){
    				new_date.setUTCDate(--day);
    				new_date.setUTCMonth(new_month);
    			}
    			return new_date;
    		},
     
    		moveYear: function(date, dir){
    			return this.moveMonth(date, dir*12);
    		},
     
    		dateWithinRange: function(date){
    			return date >= this.o.startDate && date <= this.o.endDate;
    		},
     
    		keydown: function(e){
    			if (this.picker.is(':not(:visible)')){
    				if (e.keyCode == 27) // allow escape to hide and re-show picker
    					this.show();
    				return;
    			}
    			var dateChanged = false,
    				dir, day, month,
    				newDate, newViewDate;
    			switch(e.keyCode){
    				case 27: // escape
    					this.hide();
    					e.preventDefault();
    					break;
    				case 37: // left
    				case 39: // right
    					if (!this.o.keyboardNavigation) break;
    					dir = e.keyCode == 37 ? -1 : 1;
    					if (e.ctrlKey){
    						newDate = this.moveYear(this.date, dir);
    						newViewDate = this.moveYear(this.viewDate, dir);
    						this._trigger('changeYear', this.viewDate);
    					} else if (e.shiftKey){
    						newDate = this.moveMonth(this.date, dir);
    						newViewDate = this.moveMonth(this.viewDate, dir);
    						this._trigger('changeMonth', this.viewDate);
    					} else {
    						newDate = new Date(this.date);
    						newDate.setUTCDate(this.date.getUTCDate() + dir);
    						newViewDate = new Date(this.viewDate);
    						newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
    					}
    					if (this.dateWithinRange(newDate)){
    						this.date = newDate;
    						this.viewDate = newViewDate;
    						this.setValue();
    						this.update();
    						e.preventDefault();
    						dateChanged = true;
    					}
    					break;
    				case 38: // up
    				case 40: // down
    					if (!this.o.keyboardNavigation) break;
    					dir = e.keyCode == 38 ? -1 : 1;
    					if (e.ctrlKey){
    						newDate = this.moveYear(this.date, dir);
    						newViewDate = this.moveYear(this.viewDate, dir);
    						this._trigger('changeYear', this.viewDate);
    					} else if (e.shiftKey){
    						newDate = this.moveMonth(this.date, dir);
    						newViewDate = this.moveMonth(this.viewDate, dir);
    						this._trigger('changeMonth', this.viewDate);
    					} else {
    						newDate = new Date(this.date);
    						newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
    						newViewDate = new Date(this.viewDate);
    						newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
    					}
    					if (this.dateWithinRange(newDate)){
    						this.date = newDate;
    						this.viewDate = newViewDate;
    						this.setValue();
    						this.update();
    						e.preventDefault();
    						dateChanged = true;
    					}
    					break;
    				case 13: // enter
    					this.hide();
    					e.preventDefault();
    					break;
    				case 9: // tab
    					this.hide();
    					break;
    			}
    			if (dateChanged){
    				this._trigger('changeDate');
    				var element;
    				if (this.isInput) {
    					element = this.element;
    				} else if (this.component){
    					element = this.element.find('input');
    				}
    				if (element) {
    					element.change();
    				}
    			}
    		},
     
    		showMode: function(dir) {
    			if (dir) {
    				this.viewMode = Math.max(this.o.minViewMode, Math.min(2, this.viewMode + dir));
    			}
    			/*
    				vitalets: fixing bug of very special conditions:
    				jquery 1.7.1 + webkit + show inline datepicker in bootstrap popover.
    				Method show() does not set display css correctly and datepicker is not shown.
    				Changed to .css('display', 'block') solve the problem.
    				See https://github.com/vitalets/x-editable/issues/37
     
    				In jquery 1.7.2+ everything works fine.
    			*/
    			//this.picker.find('>div').hide().filter('.datepicker-'+DPGlobal.modes[this.viewMode].clsName).show();
    			this.picker.find('>div').hide().filter('.datepicker-'+DPGlobal.modes[this.viewMode].clsName).css('display', 'block');
    			this.updateNavArrows();
    		}
    	};
     
    	var DateRangePicker = function(element, options){
    		this.element = $(element);
    		this.inputs = $.map(options.inputs, function(i){ return i.jquery ? i[0] : i; });
    		delete options.inputs;
     
    		$(this.inputs)
    			.datepicker(options)
    			.bind('changeDate', $.proxy(this.dateUpdated, this));
     
    		this.pickers = $.map(this.inputs, function(i){ return $(i).data('datepicker'); });
    		this.updateDates();
    	};
    	DateRangePicker.prototype = {
    		updateDates: function(){
    			this.dates = $.map(this.pickers, function(i){ return i.date; });
    			this.updateRanges();
    		},
    		updateRanges: function(){
    			var range = $.map(this.dates, function(d){ return d.valueOf(); });
    			$.each(this.pickers, function(i, p){
    				p.setRange(range);
    			});
    		},
    		dateUpdated: function(e){
    			var dp = $(e.target).data('datepicker'),
    				new_date = dp.getUTCDate(),
    				i = $.inArray(e.target, this.inputs),
    				l = this.inputs.length;
    			if (i == -1) return;
     
    			if (new_date < this.dates[i]){
    				// Date being moved earlier/left
    				while (i>=0 && new_date < this.dates[i]){
    					this.pickers[i--].setUTCDate(new_date);
    				}
    			}
    			else if (new_date > this.dates[i]){
    				// Date being moved later/right
    				while (i<l && new_date > this.dates[i]){
    					this.pickers[i++].setUTCDate(new_date);
    				}
    			}
    			this.updateDates();
    		},
    		remove: function(){
    			$.map(this.pickers, function(p){ p.remove(); });
    			delete this.element.data().datepicker;
    		}
    	};
     
    	function opts_from_el(el, prefix){
    		// Derive options from element data-attrs
    		var data = $(el).data(),
    			out = {}, inkey,
    			replace = new RegExp('^' + prefix.toLowerCase() + '([A-Z])'),
    			prefix = new RegExp('^' + prefix.toLowerCase());
    		for (var key in data)
    			if (prefix.test(key)){
    				inkey = key.replace(replace, function(_,a){ return a.toLowerCase(); });
    				out[inkey] = data[key];
    			}
    		return out;
    	}
     
    	function opts_from_locale(lang){
    		// Derive options from locale plugins
    		var out = {};
    		// Check if "de-DE" style date is available, if not language should
    		// fallback to 2 letter code eg "de"
    		if (!dates[lang]) {
    			lang = lang.split('-')[0]
    			if (!dates[lang])
    				return;
    		}
    		var d = dates[lang];
    		$.each(locale_opts, function(i,k){
    			if (k in d)
    				out[k] = d[k];
    		});
    		return out;
    	}
     
    	var old = $.fn.datepicker;
    	$.fn.datepicker = function ( option ) {
    		var args = Array.apply(null, arguments);
    		args.shift();
    		var internal_return,
    			this_return;
    		this.each(function () {
    			var $this = $(this),
    				data = $this.data('datepicker'),
    				options = typeof option == 'object' && option;
    			if (!data) {
    				var elopts = opts_from_el(this, 'date'),
    					// Preliminary otions
    					xopts = $.extend({}, defaults, elopts, options),
    					locopts = opts_from_locale(xopts.language),
    					// Options priority: js args, data-attrs, locales, defaults
    					opts = $.extend({}, defaults, locopts, elopts, options);
    				if ($this.is('.input-daterange') || opts.inputs){
    					var ropts = {
    						inputs: opts.inputs || $this.find('input').toArray()
    					};
    					$this.data('datepicker', (data = new DateRangePicker(this, $.extend(opts, ropts))));
    				}
    				else{
    					$this.data('datepicker', (data = new Datepicker(this, opts)));
    				}
    			}
    			if (typeof option == 'string' && typeof data[option] == 'function') {
    				internal_return = data[option].apply(data, args);
    				if (internal_return !== undefined)
    					return false;
    			}
    		});
    		if (internal_return !== undefined)
    			return internal_return;
    		else
    			return this;
    	};
     
    	var defaults = $.fn.datepicker.defaults = {
    		autoclose: false,
    		beforeShowDay: $.noop,
    		calendarWeeks: false,
    		clearBtn: false,
    		daysOfWeekDisabled: [],
    		endDate: Infinity,
    		forceParse: true,
    		format: 'mm/dd/yyyy',
    		keyboardNavigation: true,
    		language: 'en',
    		minViewMode: 0,
    		orientation: "auto",
    		rtl: false,
    		startDate: -Infinity,
    		startView: 0,
    		todayBtn: false,
    		todayHighlight: false,
    		weekStart: 0
    	};
    	var locale_opts = $.fn.datepicker.locale_opts = [
    		'format',
    		'rtl',
    		'weekStart'
    	];
    	$.fn.datepicker.Constructor = Datepicker;
    	var dates = $.fn.datepicker.dates = {
    		en: {
    			days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
    			daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
    			daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
    			months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
    			monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
    			today: "Today",
    			clear: "Clear"
    		}
    	};
     
    	var DPGlobal = {
    		modes: [
    			{
    				clsName: 'days',
    				navFnc: 'Month',
    				navStep: 1
    			},
    			{
    				clsName: 'months',
    				navFnc: 'FullYear',
    				navStep: 1
    			},
    			{
    				clsName: 'years',
    				navFnc: 'FullYear',
    				navStep: 10
    		}],
    		isLeapYear: function (year) {
    			return (((year % 4 === 0) && (year % 100 !== 0)) || (year % 400 === 0));
    		},
    		getDaysInMonth: function (year, month) {
    			return [31, (DPGlobal.isLeapYear(year) ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month];
    		},
    		validParts: /dd?|DD?|mm?|MM?|yy(?:yy)?/g,
    		nonpunctuation: /[^ -\/:-@\[\u3400-\u9fff-`{-~\t\n\r]+/g,
    		parseFormat: function(format){
    			// IE treats \0 as a string end in inputs (truncating the value),
    			// so it's a bad format delimiter, anyway
    			var separators = format.replace(this.validParts, '\0').split('\0'),
    				parts = format.match(this.validParts);
    			if (!separators || !separators.length || !parts || parts.length === 0){
    				throw new Error("Invalid date format.");
    			}
    			return {separators: separators, parts: parts};
    		},
    		parseDate: function(date, format, language) {
    			if (date instanceof Date) return date;
    			if (typeof format === 'string')
    				format = DPGlobal.parseFormat(format);
    			if (/^[\-+]\d+[dmwy]([\s,]+[\-+]\d+[dmwy])*$/.test(date)) {
    				var part_re = /([\-+]\d+)([dmwy])/,
    					parts = date.match(/([\-+]\d+)([dmwy])/g),
    					part, dir;
    				date = new Date();
    				for (var i=0; i<parts.length; i++) {
    					part = part_re.exec(parts[i]);
    					dir = parseInt(part[1]);
    					switch(part[2]){
    						case 'd':
    							date.setUTCDate(date.getUTCDate() + dir);
    							break;
    						case 'm':
    							date = Datepicker.prototype.moveMonth.call(Datepicker.prototype, date, dir);
    							break;
    						case 'w':
    							date.setUTCDate(date.getUTCDate() + dir * 7);
    							break;
    						case 'y':
    							date = Datepicker.prototype.moveYear.call(Datepicker.prototype, date, dir);
    							break;
    					}
    				}
    				return UTCDate(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), 0, 0, 0);
    			}
    			var parts = date && date.match(this.nonpunctuation) || [],
    				date = new Date(),
    				parsed = {},
    				setters_order = ['yyyy', 'yy', 'M', 'MM', 'm', 'mm', 'd', 'dd'],
    				setters_map = {
    					yyyy: function(d,v){ return d.setUTCFullYear(v); },
    					yy: function(d,v){ return d.setUTCFullYear(2000+v); },
    					m: function(d,v){
    						if (isNaN(d))
    							return d;
    						v -= 1;
    						while (v<0) v += 12;
    						v %= 12;
    						d.setUTCMonth(v);
    						while (d.getUTCMonth() != v)
    							d.setUTCDate(d.getUTCDate()-1);
    						return d;
    					},
    					d: function(d,v){ return d.setUTCDate(v); }
    				},
    				val, filtered, part;
    			setters_map['M'] = setters_map['MM'] = setters_map['mm'] = setters_map['m'];
    			setters_map['dd'] = setters_map['d'];
    			date = UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
    			var fparts = format.parts.slice();
    			// Remove noop parts
    			if (parts.length != fparts.length) {
    				fparts = $(fparts).filter(function(i,p){
    					return $.inArray(p, setters_order) !== -1;
    				}).toArray();
    			}
    			// Process remainder
    			if (parts.length == fparts.length) {
    				for (var i=0, cnt = fparts.length; i < cnt; i++) {
    					val = parseInt(parts[i], 10);
    					part = fparts[i];
    					if (isNaN(val)) {
    						switch(part) {
    							case 'MM':
    								filtered = $(dates[language].months).filter(function(){
    									var m = this.slice(0, parts[i].length),
    										p = parts[i].slice(0, m.length);
    									return m == p;
    								});
    								val = $.inArray(filtered[0], dates[language].months) + 1;
    								break;
    							case 'M':
    								filtered = $(dates[language].monthsShort).filter(function(){
    									var m = this.slice(0, parts[i].length),
    										p = parts[i].slice(0, m.length);
    									return m == p;
    								});
    								val = $.inArray(filtered[0], dates[language].monthsShort) + 1;
    								break;
    						}
    					}
    					parsed[part] = val;
    				}
    				for (var i=0, _date, s; i<setters_order.length; i++){
    					s = setters_order[i];
    					if (s in parsed && !isNaN(parsed[s])){
    						_date = new Date(date);
    						setters_map[s](_date, parsed[s]);
    						if (!isNaN(_date))
    							date = _date;
    					}
    				}
    			}
    			return date;
    		},
    		formatDate: function(date, format, language){
    			if (typeof format === 'string')
    				format = DPGlobal.parseFormat(format);
    			var val = {
    				d: date.getUTCDate(),
    				D: dates[language].daysShort[date.getUTCDay()],
    				DD: dates[language].days[date.getUTCDay()],
    				m: date.getUTCMonth() + 1,
    				M: dates[language].monthsShort[date.getUTCMonth()],
    				MM: dates[language].months[date.getUTCMonth()],
    				yy: date.getUTCFullYear().toString().substring(2),
    				yyyy: date.getUTCFullYear()
    			};
    			val.dd = (val.d < 10 ? '0' : '') + val.d;
    			val.mm = (val.m < 10 ? '0' : '') + val.m;
    			var date = [],
    				seps = $.extend([], format.separators);
    			for (var i=0, cnt = format.parts.length; i <= cnt; i++) {
    				if (seps.length)
    					date.push(seps.shift());
    				date.push(val[format.parts[i]]);
    			}
    			return date.join('');
    		},
    		headTemplate: '<thead>'+
    							'<tr>'+
    								'<th class="prev">&laquo;</th>'+
    								'<th colspan="5" class="datepicker-switch"></th>'+
    								'<th class="next">&raquo;</th>'+
    							'</tr>'+
    						'</thead>',
    		contTemplate: '<tbody><tr><td colspan="7"></td></tr></tbody>',
    		footTemplate: '<tfoot><tr><th colspan="7" class="today"></th></tr><tr><th colspan="7" class="clear"></th></tr></tfoot>'
    	};
    	DPGlobal.template = '<div class="datepicker">'+
    							'<div class="datepicker-days">'+
    								'<table class=" table-condensed">'+
    									DPGlobal.headTemplate+
    									'<tbody></tbody>'+
    									DPGlobal.footTemplate+
    								'</table>'+
    							'</div>'+
    							'<div class="datepicker-months">'+
    								'<table class="table-condensed">'+
    									DPGlobal.headTemplate+
    									DPGlobal.contTemplate+
    									DPGlobal.footTemplate+
    								'</table>'+
    							'</div>'+
    							'<div class="datepicker-years">'+
    								'<table class="table-condensed">'+
    									DPGlobal.headTemplate+
    									DPGlobal.contTemplate+
    									DPGlobal.footTemplate+
    								'</table>'+
    							'</div>'+
    						'</div>';
     
    	$.fn.datepicker.DPGlobal = DPGlobal;
     
     
    	/* DATEPICKER NO CONFLICT
    	* =================== */
     
    	$.fn.datepicker.noConflict = function(){
    		$.fn.datepicker = old;
    		return this;
    	};
     
     
    	/* DATEPICKER DATA-API
    	* ================== */
     
    	$(document).on(
    		'focus.datepicker.data-api click.datepicker.data-api',
    		'[data-provide="datepicker"]',
    		function(e){
    			var $this = $(this);
    			if ($this.data('datepicker')) return;
    			e.preventDefault();
    			// component click requires us to explicitly show it
    			$this.datepicker('show');
    		}
    	);
    	$(function(){
    		$('[data-provide="datepicker-inline"]').datepicker();
    	});
     
    }( window.jQuery ));

  20. #20
    Futur Membre du Club
    Homme Profil pro
    Autre
    Inscrit en
    Février 2023
    Messages
    49
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 33
    Localisation : Maroc

    Informations professionnelles :
    Activité : Autre

    Informations forums :
    Inscription : Février 2023
    Messages : 49
    Points : 6
    Points
    6
    Par défaut
    Citation Envoyé par Sve@r Voir le message
    Tu as essayé ce code tel quel? Sans tabulations sans rien pour identifier les blocs de travail? Non seulement ça ne peut pas marcher effectivement mais en plus il ne peut même pas s'exécuter !!!


    Nous non plus (on va rarement scrapper un site web) mais déjà rajouter du print(date, type(date)) est un bon début pour arriver à trouver où se cache l'info...
    Accessoirement l'opérateur !== n'existe pas en Python. Quant au fait que tu compares date (un truc faisant partie d'une liste, liste retournée par driver.find_elements()) avec un autre driver.find_elements()... Ben oui, si driver.find_elements() retourne une liste, alors un élément de la liste ne peut pas être égal à l'ensemble de la liste !!!
    Qu'en pensez vous?

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. Réponses: 32
    Dernier message: 12/10/2018, 14h06
  2. Bloquer certaines dates sur un calendrier JS
    Par djesty dans le forum Général JavaScript
    Réponses: 1
    Dernier message: 19/07/2017, 21h02
  3. Réponses: 61
    Dernier message: 10/04/2015, 15h28
  4. [XL-2010] Faire un modulo avec une date (Fréquence) sur un calendrier
    Par TTAM54 dans le forum Excel
    Réponses: 2
    Dernier message: 01/04/2015, 08h01
  5. Récupérer une date en cliquant sur le calendrier
    Par christophe_halgand dans le forum MATLAB
    Réponses: 10
    Dernier message: 23/01/2008, 09h10

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo