I want to make python crawling. I already logged on this website and want to send_keys(keyword) and click the button. I try to find css selector or xpath but there is some error as follows.
from selenium import webdriver as wd
import time
main_url2 = 'https://manage.searchad.naver.com/customers/668860/tool/keyword-planner'
driver.find_element_by_xpath('//*[@id="wrap"]/div/div/div[1]/div[1]/div/div/div/div[2]/div[1]/div[1]/div[2]/form/div[1]/div/div/textarea').send_keys(keyword)
keyword ='모기퇴치기'
This is the error messasge as follows
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//*[@id="wrap"]/div/div/div1/div1/div/div/div/div[2]/div1/div1/div[2]/form/div1/div/div/textarea"} (Session info: chrome=68.0.3440.106) (Driver info: chromedriver=2.41.578737 (49da6702b16031c40d63e5618de03a32ff6c197e),platform=Windows NT 10.0.16299 x86_64)
This is the image of website and resources of chrome driver.