-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path44_WYSIWYG_editor.py
38 lines (27 loc) · 1013 Bytes
/
44_WYSIWYG_editor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.action_chains import ActionChains
driver = webdriver.Firefox()
try:
wait = WebDriverWait(driver, 10)
driver.get('https://the-internet.herokuapp.com/')
link = wait.until(EC.presence_of_element_located(
(By.LINK_TEXT, "WYSIWYG Editor")
))
link.click()
linkFrame = wait.until(EC.presence_of_element_located(
(By.ID, "mce_0_ifr")
))
linkFrame.click()
driver.switch_to.frame('mce_0_ifr')
text = wait.until(EC.presence_of_element_located(
(By.CSS_SELECTOR, '#tinymce')
))
text.click()
text.send_keys('I am a machine and i know how to type text by myself')
#center = driver.find_element(By.CSS_SELECTOR, "//button[@aria-label='Align Center']")
#center.click()
finally:
driver.quit()