Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть Selenium Webdriver Automation: Submitting a comment on a webpage using Python

  • Will Musat
  • 2018-04-08
  • 119
Selenium Webdriver Automation: Submitting a comment on a webpage using Python
seleniumqaautomationwebdriverchromedrivermacosxpythonqatestingsqa
  • ok logo

Скачать Selenium Webdriver Automation: Submitting a comment on a webpage using Python бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно Selenium Webdriver Automation: Submitting a comment on a webpage using Python или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку Selenium Webdriver Automation: Submitting a comment on a webpage using Python бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео Selenium Webdriver Automation: Submitting a comment on a webpage using Python

Showing off a basic Selenium Webdriver automation script using Python.

The script goes to my website, fills out a few fields, and clicks the submit button to send myself an email.

Website: https://willmusat.wixsite.com/home

Code:

import time
from selenium import webdriver

driver = webdriver.Chrome()
driver.implicitly_wait(10) # seconds
driver.get("https://willmusat.wixsite.com/home")

time.sleep(8)

element = driver.find_element_by_link_text("CONTACT")
element.click()
time.sleep(2)

name = driver.find_element_by_id("field1")
name.send_keys('Will')
time.sleep(2)

email = driver.find_element_by_id("field2")
email.send_keys('[email protected]')
time.sleep(2)

subject = driver.find_element_by_id("field3")
subject.send_keys('Site Looks great!')
time.sleep(2)

message = driver.find_element_by_name("Message")
message.send_keys('Hey Will the site looks great - nice job!')
time.sleep(2)

send = driver.find_element_by_id("comp-iqqoiul5submit")
send.click()

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]