net.mindengine.galen.page.selenium.ScreenElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of galen Show documentation
Show all versions of galen Show documentation
A library for layout testing of websites
/*******************************************************************************
* Copyright 2014 Ivan Shubin http://mindengine.net
*
* 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.
******************************************************************************/
package net.mindengine.galen.page.selenium;
import java.util.List;
import net.mindengine.galen.page.PageElement;
import net.mindengine.galen.page.Rect;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
public class ScreenElement implements PageElement {
private WebDriver driver;
public ScreenElement(WebDriver driver) {
this.driver = driver;
}
@SuppressWarnings("unchecked")
@Override
public Rect getArea() {
List size = (List)((JavascriptExecutor)driver).executeScript("return [Math.max(" +
"document.body.scrollWidth, document.documentElement.scrollWidth," +
"document.body.offsetWidth, document.documentElement.offsetWidth," +
"document.body.clientWidth, document.documentElement.clientWidth)," +
"Math.max(" +
"document.body.scrollHeight, document.documentElement.scrollHeight," +
"document.body.offsetHeight, document.documentElement.offsetHeight," +
"document.body.clientHeight, document.documentElement.clientHeight)];"
);
return new Rect(0, 0, size.get(0).intValue(), size.get(1).intValue());
}
@Override
public boolean isPresent() {
return true;
}
@Override
public boolean isVisible() {
return true;
}
@Override
public int getWidth() {
return getArea().getWidth();
}
@Override
public int getHeight() {
return getArea().getHeight();
}
@Override
public int getLeft() {
return 0;
}
@Override
public int getTop() {
return 0;
}
@Override
public String getText() {
return "";
}
@Override
public String getCssProperty(String cssPropertyName) {
return "";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy