-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Expose full document screen capture endpoint #570
Comments
We have support for taking full document screenshots in Marionette, but it isn’t exposed in geckodriver yet since it is a proprietary non-WebDriver API. WebDriver only expects the capture area to be the viewport. We do, however, want to expose this under a Mozilla-specific namespace in geckodriver. |
Hi |
@andreastt could you tell me when are you planning to expose this feature in geckodriver? This issue has over a half year and nothing has changed. I'm asking again because it's very crucial for my project. |
@cezarypiatek There is a vague intent, but this is low priority from our side. I am happy to receive patches for this. |
@andreastt you tagged this issue with geckodriver. Do we actually have a bug for it filed? |
@whimboo The canonical source of geckodriver was on GitHub when I labelled this. |
@andreastt sure, but would you mind to file a bug which describes whatever we want to have? Thanks. |
Sure, sorry about the delay. Here’s the bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1431148 |
This has been fixed by the above mentioned bug for Firefox 65. |
This issue has been automatically locked since there has not been any recent activity after it was closed. If you have run into an issue you think is related, please open a new issue. |
In order to help us efficiently investigate your issue, please provide the following information:
Firefox Version
52.0.1
Platform
macOS Sierra
Steps to reproduce -
To capture the whole page in screenshots in v0.15.0, I changed
marionette.rs line 924 to
data.insert("full".to_string(), Json::Boolean(true));
but that only captures the whole page vertically. Horizontally it still crops at the Browser window viewport. What do I need to change to get the whole page in the screenshot?
The text was updated successfully, but these errors were encountered: