Démarrez votre machine virtuelle:
https://surlaprogrammation.blogspot.jp/2017/08/virtual-box-et-vagrant.html
Et allez à http://192.168.33.10/
Installez Chromedriver (pour votre machine hôte):
https://sites.google.com/a/chromium.org/chromedriver/downloads
Et changez l'emplacement du logiciel, par exemple"C:\Users\John\Documents\workspace\test".
Et faites la commande dans l'invite de commande et installer selenium.
pip install selenium
Écrivez ça dans un fichier de texte et changez le en fichier python:
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
driver_path = "C:\\Users\\John\\Documents\\workspace\\test\\chromedriver.exe" #Changez ici
driver = webdriver.Chrome(driver_path)
driver.get("http://192.168.33.10")
title = driver.find_element_by_tag_name("title")
driver.quit()
#driver.close()
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
driver_path = "C:\\Users\\John\\Documents\\workspace\\test\\chromedriver.exe" #Changez ici
driver = webdriver.Chrome(driver_path)
driver.get("http://192.168.33.10")
title = driver.find_element_by_tag_name("title")
driver.quit()
#driver.close()
Faites cette commande dans l'invite de commande et démarrez le logiciel python.
cd C:\Users\John\Documents\workspace\test
python test.py
python test.py
Il ouvrira automatiquement Chrome et ira http://192.168.33.10 et vérifier l'existence d'un "title" élément HTML.
Aucun commentaire:
Enregistrer un commentaire