post_title = browser.find_element_by_id('title')
post_title.send_keys(title)
post_image = browser.find_element_by_id('content_ifr')
image=' '+image+'\n'
post_image.send_keys(image)
post_text = browser.find_element_by_id('content_ifr')
post_text.send_keys(text)
time.sleep(5)
#WebElement element = driver.findElement(By("publish"));
#Actions action = new Actions(driver);
#action.moveToElement(element).click().perform();
my_variable = browser.find_element_by_xpath('//*[@id="publish"]') #this is the checkbox
#my_variable.send_keys(webdriver.common.keys.Keys.SPACE)
#browser.switch_to_default_content()
#Pubish = browser.find_element_by_id('publish')
my_variable.click()
Error
Element <input type="submit" name="publish" id="publish" class="button
button-primary button-large" value="Publish"> is not clickable at point
(1283, 15). Other element would receive the click: <span class="display-
name">...</span>
Using python, selenium chrome webdriver to automate WordPress . this is related to new post part . unable to hit publish button
Tried maximizing the window - not working .. Tried changing frame (using Tinymce) - not working tried xpath solution -not working Tried Waiting : not working
Browser: Chrome OS: WIN 10
Request you to explain the solution also