When I run this code
url = 'https://www.google.com'
driver = webdriver.Firefox()
driver.get(url)
print(driver.get_window_position())'
I get this error
selenium.common.exceptions.WebDriverException: Message: GET /session/bbb48fc8-51ba-4cff-b639-771f80489785/window/rect did not match a known command
The error seems to be in the get_window_position()
method. Any idea?
This error message...
...implies that the GET method on the /session/{session id}/window/rect endpoint i.e. Get Window Rect failed.
get_window_position
get_window_position() gets the x,y position of the current window.
Usage:
I have used your own code at on my Windows 8 box as follows:
But unable to reproduce the error/issue.
However at this point it is worth to mention that different Browser Clients renders the HTML in a different way. You can find a relevant discussion in Chrome & Firefox on Windows vs Linux (selenium).
It is possible as per your Test Configuration the Client (i.e. the Web Browser) returned back the control to the WebDriver instance i.e. 'document.readyState' equal to "complete" before the
/session/{session id}/window/rect
endpoint was established.Solution
Induce WebDriverWait before you try to extract the window_position as follows:
Code Block:
Console Output: