-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Full page screenshot support in Chrome #294
Merged
malaskowski
merged 40 commits into
milestone/chrome-support
from
bugfix/aet-integration-tests-stabilization
Aug 3, 2018
Merged
Changes from 38 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
2a8dcb9
Suite files udpated for chrome - line number changes, filter rules ch…
smoczysko88 ae0ac30
ChromeEntirePageScreen
Slasheruus cac7773
Merge remote-tracking branch 'origin/ChromeFullPageScreen' into bugfi…
smoczysko88 8a6f67b
Chrome limit handler && disabled scrolling
PiteroS678 bc537b4
Refactoring
PiteroS678 c3f9f4f
Tests for ResolutionModifier update
PiteroS678 26772c8
Setting resolution for chrome screen comparator
smoczysko88 330a8a6
Collect page height update
PiteroS678 9ada174
Merge remote-tracking branch 'origin/ChromeFullPageScreenNoScrolling'…
smoczysko88 834a837
Wiki - Hide Modifier update
PiteroS678 e0120aa
Changed pageLoadStrategy && updated ResolutionModifierTest
PiteroS678 49dbc7f
Merge remote-tracking branch 'origin/ChromeFullPageScreenNoScrolling'…
smoczysko88 ed587b2
New chrome arg to fix headless+proxy screenshot issue
tkaik 239dc4a
Merge remote-tracking branch 'origin/ChromeFullPageScreenNoScrolling'…
smoczysko88 503089f
Revert pageLoadStrategy
PiteroS678 863341b
Merge remote-tracking branch 'origin/ChromeFullPageScreenNoScrolling'…
smoczysko88 483662c
Merge remote-tracking branch 'origin/task/w3c-nuvalidator-version-upg…
Slasheruus 6a0f420
Merge branch 'bugfix/aet-integration-tests-stabilization' of github.c…
smoczysko88 7f3d41b
Merge branch 'ChromeFullPageScreenNoScrolling' of https://github.com/…
tkaik 484381b
Merge branch 'bugfix/aet-integration-tests-stabilization' of github.c…
smoczysko88 a5fb1d9
S-comparator-Layout-Hide-leaveBlankSpace-false - ResolutionModifier a…
PiteroS678 a2cff67
ResolutionModifier - refactor
PiteroS678 2da4b7e
Decreased wait timeouts for tests stabilizations
tkaik b5b0eba
ResolutionModifier - refactor
PiteroS678 b470103
ResolutionModifierTest - update & refactor
PiteroS678 63de36c
Adjustments for Chrome compatibility
smoczysko88 ac0178a
Tests adjustments for chrome.
smoczysko88 69de42e
ResolutionModifierTest - new test & refactor,
PiteroS678 a85618f
Increased cookie max age for tests stabilization
tkaik b2e2e1d
ResolutionModifier - refactor
PiteroS678 2cafbda
ResolutionModifierTest - update
PiteroS678 80da189
ResolutionModifierTest - refactor
PiteroS678 5f5e26c
Wiki - ResolutionModifier update
PiteroS678 0ae1f70
layout.xml - new tests
PiteroS678 0af3bf3
height_detection.jsp - minor fix
PiteroS678 12e19a9
Wiki - ResolutionModifier update
PiteroS678 499442c
Wiki - HideModifier update
PiteroS678 864f783
ResolutionModifier update
PiteroS678 0ba974f
updated changelog
plutasnyy 4533475
Merge branch 'milestone/chrome-support' into bugfix/aet-integration-t…
plutasnyy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
integration-tests/sample-site/src/main/webapp/sanity/comparators/layout/height_detection.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<%-- | ||
|
||
AET | ||
|
||
Copyright (C) 2013 Cognifide Limited | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
||
--%> | ||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> | ||
<%@ include file="/includes/header.jsp" %> | ||
<% | ||
String timestamp = Long.toString(System.currentTimeMillis()); | ||
%> | ||
<%@ include file="/includes/bodyContent.jsp" %> | ||
<div class="space"> | ||
<%@ include file="dynamic_content.jsp" %> | ||
</div> | ||
<%@ include file="/includes/footer.jsp" %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add those changes into resolution modifier documentation:
maximize
parameterThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated - 5f5e26c