隐式等待5秒:test_webdriver.implicitly_wait(5)
test_webdriver.get("网址")
try:
test_webdriver.find_element(By.ID,'kw').send_keys('Python')
time.sleep(8)
except NoSuchElementException as e:
print("无此元素")
print(e)
隐式等待5秒:test_webdriver.implicitly_wait(5)
test_webdriver.get("网址")
try:
test_webdriver.find_element(By.ID,'kw').send_keys('Python')
time.sleep(8)
except NoSuchElementException as e:
print("无此元素")
print(e)