“Selenum Iframe Python” Kod odpowiedzi

Selenium Python Przełącz się na iframe

# go to iframe
driver.switch_to.frame(iframe)

# back to previous frame
driver.switch_to.parent_frame()
marcofaga

Selenum Iframe Python

self.driver = webdriver.Firefox()

## Give time for iframe to load ##
time.sleep(3)
## You have to switch to the iframe like so: ##
driver.switch_to.frame(driver.find_element_by_tag_name("iframe"))
## Insert text via xpath ##
elem = driver.find_element_by_xpath("/html/body/p")
elem.send_keys("Lorem Ipsum")
## Switch back to the "default content" (that is, out of the iframes) ##
driver.switch_to.default_content()
miletoo

Odpowiedzi podobne do “Selenum Iframe Python”

Pytania podobne do “Selenum Iframe Python”

Więcej pokrewnych odpowiedzi na “Selenum Iframe Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu