Pavel Zorin
Pavel Zorin
Hi, @shahankit783. For Chrome you should use ``` new AShot() .shootingStrategy(ShootingStrategies.viewportPasting(100)) .takeScreenshot(webDriver); ``` because it takes only view port screenshot. Notice that you should use different AShot configurations for different...
You can find the factory of such strategies in [ShootingStrategies.java](https://github.com/yandex-qatools/ashot/blob/master/src/main/java/ru/yandex/qatools/ashot/shooting/ShootingStrategies.java). In this case `viewportPasting(100)` - 100 - is a timeout interval between scrolling of viewport.
Hello, @javedansari1983. Could you please provide your code when you are taking screenshot?
@javedansari1983 To be honest, I can not understand the problem. At least I should know your Selenium configuration on Jenkins. Obviously it differs of your local firefox. What is the...
@javedansari1983 Firefox on Jenkins has smaller window size. The bast approach is to make you window size predictable. Just try to set you preferred window size before your test `driver.manage().window().setSize(new...
@jiggy-rc Hi. You can solve it by adjusting your window width. `driver.manage().window().setSize(new Dimension([over100500]))`. This workaround will help right now. Also it is possible to create `VerticalAndHorisontalPastingStrtegy`. But it going to...
@jiggy-rc Try `webDriverRule.getDriver().manage().window().maximize()` or `new Dimension(2000,725)`
@jiggy-rc It looks like a problem with you Selenium grid configuration. For some reasons browser window size is limited and your page doesn't fit in it. Do you use Selenium...
@jiggy-rc Which OS are you using? And which DPR? If you have the retina display, you should set the `dpr` to AShot.
Hi, @khabali. Thank you for interesting issue. Do you have any ideas how to fix it? I have only one idea - to remove or hide this fixed bar while...