Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

อธิบายการรอที่ชัดเจนใน Selenium webdriver ใน Python


มีการใช้การรอที่ชัดเจนเพื่อสั่งให้ webdriver รอเงื่อนไขเฉพาะก่อนที่จะย้ายไปยังขั้นตอนอื่นๆ ในสคริปต์การทำงานอัตโนมัติ

การรออย่างชัดแจ้งถูกใช้งานโดยใช้คลาส WebDriverWait พร้อมกับคาดหวัง_conditions คลาสที่คาดหวัง_conditions มีกลุ่มของเงื่อนไขที่สร้างไว้ล่วงหน้าที่จะใช้ร่วมกับคลาส WebDriverWait

  • alert_is_present
  • element_selection_state_to_be
  • presence_of_all_elements_located
  • element_located_to_be_selected
  • text_to_be_present_in_element
  • text_to_be_present_in_element_value
  • frame_to_be_available_and_switch_to_it
  • element_located_to_be_selected
  • visibility_of_element_located
  • presence_of_element_located
  • title_is
  • title_contains
  • การมองเห็น_ของ
  • ความเหม็นอับของ
  • element_to_be_clickable
  • ล่องหน_of_element_located
  • element_to_be_selected

ให้เรารอข้อความ - Team @ Tutorials Point ซึ่งจะมีให้เมื่อคลิกลิงก์ - ทีมบนหน้า

อธิบายการรอที่ชัดเจนใน Selenium webdriver ใน Python

เมื่อคลิกลิงก์ทีม ข้อความ Team @ Tutorials Point จะปรากฏขึ้น

อธิบายการรอที่ชัดเจนใน Selenium webdriver ใน Python

ตัวอย่าง

การติดตั้งโค้ด

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.wait import WebDriverWait
driver = webdriver.Chrome(executable_path='../drivers/chromedriver')
#url launch
driver.get("https://www.tutorialspoint.com/about/about_careers.htm")
#identify element
l = driver.find_element_by_link_text('Team')
l.click()
#expected condition for explicit wait
w = WebDriverWait(driver, 5)
w.until(EC.presence_of_element_located((By.TAG_NAME, 'h1')))
s = driver.find_element_by_tag_name('h1')
#obtain text
t = s.text
print('Text is: ' + t)
#driver quit
driver.quit()

ผลลัพธ์

อธิบายการรอที่ชัดเจนใน Selenium webdriver ใน Python