admin管理员组

文章数量:1345700

My code:

mentr = driver.find_element_by_id("simplebox-placeholder")
mentr.click()

driver.execute_script("document.getElementById('simplebox- 
placeholder').value = 'your ment text here';")
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
mentr.send_keys("HELO")

My error:

Traceback (most recent call last): File "C:\Users\weqwwg\Desktop\python\Game.py", line 77, in driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); AttributeError: 'WebDriver' object has no attribute 'manage'

I'm trying to send a key to the ment box on youtube. I removed some code, I am currently running this code.

mentr = driver.find_element_by_id("simplebox-placeholder")
mentr.click()
driver.implicitly_wait(10)
mentr.send_keys("HELO")

This is the error I'm getting:

Traceback (most recent call last):
  File "C:\Users\Brandsdo\Desktop\python\Game.py", line 76, in <module>
    mentr.send_keys("HELO")
  File "C:\Users\Braasdasndo\AppData\Local\Programs\Python\Python37-32\lib\site-packages\selenium\webdriver\remote\webelement.py", line 479, in send_keys
    'value': keys_to_typing(value)})
  File "C:\Users\Brsadasdando\AppData\Local\Programs\Python\Python37-32\lib\site-packages\selenium\webdriver\remote\webelement.py", line 633, in _execute
    return self._parent.execute(mand, params)
  File "C:\Users\Braasdasndo\AppData\Local\Programs\Python\Python37-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
  File "C:\Users\Braasdando\AppData\Local\Programs\Python\Python37-32\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
seleniummon.exceptions.ElementNotInteractableException: Message: element not interactable
  (Session info: chrome=73.0.3683.103)
  (Driver info: chromedriver=73.0.3683.68 (47787ec04b6e38e22703e856e101e840b65afe72),platform=Windows NT 10.0.17763 x86_64)

UPDATED PART OF CODE

driver.find_element_by_id("simplebox-placeholder").click()

mentr = WebDriverWait(driver,10).until(EC.element_to_be_clickable( (By.ID, 'contenteditable-textarea') ))

mentr.click().send_keys("HELO")
driver.find_element_by_id("submit-button").click()

THIS IS THE ERROR

Traceback (most recent call last): File "C:\Users\Desktop\python\Game.py", line 74, in mentr.click().send_keys("HELO") AttributeError: 'NoneType' object has no attribute 'send_keys'

My code:

mentr = driver.find_element_by_id("simplebox-placeholder")
mentr.click()

driver.execute_script("document.getElementById('simplebox- 
placeholder').value = 'your ment text here';")
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
mentr.send_keys("HELO")

My error:

Traceback (most recent call last): File "C:\Users\weqwwg\Desktop\python\Game.py", line 77, in driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); AttributeError: 'WebDriver' object has no attribute 'manage'

I'm trying to send a key to the ment box on youtube. I removed some code, I am currently running this code.

mentr = driver.find_element_by_id("simplebox-placeholder")
mentr.click()
driver.implicitly_wait(10)
mentr.send_keys("HELO")

This is the error I'm getting:

Traceback (most recent call last):
  File "C:\Users\Brandsdo\Desktop\python\Game.py", line 76, in <module>
    mentr.send_keys("HELO")
  File "C:\Users\Braasdasndo\AppData\Local\Programs\Python\Python37-32\lib\site-packages\selenium\webdriver\remote\webelement.py", line 479, in send_keys
    'value': keys_to_typing(value)})
  File "C:\Users\Brsadasdando\AppData\Local\Programs\Python\Python37-32\lib\site-packages\selenium\webdriver\remote\webelement.py", line 633, in _execute
    return self._parent.execute(mand, params)
  File "C:\Users\Braasdasndo\AppData\Local\Programs\Python\Python37-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
  File "C:\Users\Braasdando\AppData\Local\Programs\Python\Python37-32\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.mon.exceptions.ElementNotInteractableException: Message: element not interactable
  (Session info: chrome=73.0.3683.103)
  (Driver info: chromedriver=73.0.3683.68 (47787ec04b6e38e22703e856e101e840b65afe72),platform=Windows NT 10.0.17763 x86_64)

UPDATED PART OF CODE

driver.find_element_by_id("simplebox-placeholder").click()

mentr = WebDriverWait(driver,10).until(EC.element_to_be_clickable( (By.ID, 'contenteditable-textarea') ))

mentr.click().send_keys("HELO")
driver.find_element_by_id("submit-button").click()

THIS IS THE ERROR

Traceback (most recent call last): File "C:\Users\Desktop\python\Game.py", line 74, in mentr.click().send_keys("HELO") AttributeError: 'NoneType' object has no attribute 'send_keys'

Share Improve this question edited Apr 21, 2019 at 17:50 justloookingforlove asked Apr 21, 2019 at 0:43 justloookingforlovejustloookingforlove 231 gold badge1 silver badge6 bronze badges 2
  • What is your idea this timeout is going to do if set? Could you please explain directly in question. I feel, you use a wrong approach. And to fix your immediate problem, use driver.implicitly_wait(10). See there – Sergey Nudnov Commented Apr 21, 2019 at 3:43
  • The problem is that your driver.manage... line is Java but you are writing in python. You need to use the python equivalent as Sergey indicated. – JeffC Commented Apr 22, 2019 at 19:56
Add a ment  | 

1 Answer 1

Reset to default 6

This is answer to an original question:

To fix your immediate problem, use

driver.implicitly_wait(10)

Manual is there

However you are probably going in a wrong direction altogether. Instead, try to use the WebDriverWait module.

from selenium.webdriver.support.ui import WebDriverWait

For example:

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

#...

footer = WebDriverWait(driver, 10).until(EC.visibility_of_element_located(
   (By.CSS_SELECTOR, ".b-footer__divider"))
)

Update for the updated part of question:

I'm trying to send a key to the ment box on youtube. I removed some code, I am currently running this code.

As I suspected, you don't need the implicitly_wait function at all there.

  • I have reviewed the YouTube page. Your first step is right - you are locating "Add a public ment..." box and clicking on it.

  • I skipping the implicitly_wait call - it doesn't affect nothing there.

  • At the next step you are trying to send keystrokes into the same box you found and clicked. This is wrong. Though they look exactly the same, you were clicking on the element with id simplebox-placeholder, but once clicked that element bees invisible, and the same looking element with id contenteditable-textarea is ready to get your input.

In a simple approach, you should locate this element and send keystrokes into it:

mentr = driver.find_element_by_id("contenteditable-textarea")
mentr.click()
mentr.send_keys("HELO")

But when you are clicked to simplebox-placeholder, it could take some time for page to perform the necessary actions and make the contenteditable-textarea visible and clickable. The approach below will allow you to avoid exception if an element is not ready yet:

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

mentr = WebDriverWait(driver,10).until(EC.element_to_be_clickable( (By.ID, 'contenteditable-textarea') ))
mentr.click()
mentr.send_keys("HELO")
  • Finally, locate the "Comment" button and click it to submit your ment. Here you can use simplified approach, because the "Comment" button is already ready:

driver.find_element_by_id("submit-button").click()

Overall, your code could look like:

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

driver.find_element_by_id("simplebox-placeholder").click()

mentr = WebDriverWait(driver,10).until(EC.element_to_be_clickable( (By.ID, 'contenteditable-textarea') ))

mentr.click()
mentr.send_keys("HELO")
driver.find_element_by_id("submit-button").click()

本文标签: javascriptIssue with AttributeError 39WebDriver39 object has no attribute 39manage39Stack Overflow