12 questions
0 votes
1 answer
133 views
Entire screenshot for Android and iOS
I want to capture screenshot for entire screen of android and iOS devices. But I couldn't find any solution. I have tried some packages, "screenshot, screen_capturer,native_screenshot, ...
0 votes
1 answer
118 views
ProviderNotFoundException: screenshot & share an image created programmatically
this constitutes my first post here on StackOverflow. I have tried to figure the problem on my own, but I'm a new developer and even if I was to trial-and-error my way through, I don't think I'd have ...
0 votes
0 answers
180 views
Screenshot Lock not working in React native app on iOS devices
We want to lock screenshot on app screens in React Native app so that user is not allowed to take the screenshot. The feature is implemented successfully in android version of the same React Native ...
1 vote
1 answer
1k views
Unable to take screenshot of failed test cases
I am trying to take the screenshot of failed test cases, but getting an error related to automation extension: public static String captureScreenshot(WebDriver driver, String screenshotName) { try { ...
0 votes
1 answer
928 views
Selenium and PhantomJS - can not sendKeys()
When I try to send keys than I get an error Exception in thread "main" org.openqa.selenium.InvalidElementStateException: {"errorMessage":"Element is not currently interactable and may not be ...
5 votes
1 answer
4k views
Screenshot taken at Exception via Selenium PhantomJS
Once in a while I get an exception in my Selenium PhantomJS tests that includes the text below Caused by: org.openqa.selenium.remote.ScreenshotException: Screen shot has been taken So has the ...
6 votes
0 answers
5k views
Screenshot Exception: Screenshot has been taken
Here is the Stack Trace of the PhantomJS Session. It randomly does this. I see that it says: Caused by: org.openqa.selenium.remote.ScreenshotException: Screen shot has been taken. The code works ...
1 vote
2 answers
2k views
Selenium Remote Driver - NoSuchElementException is occurred during implementation of InternetExplorerDriver
Currently working with selenium remote driver. execution is working fine with Chrome remote driver but not working with IE. IE browser is launched after that NoSuchElementException displayed similar ...
12 votes
4 answers
67k views
How to implement PhantomJS with Selenium WebDriver using java
I'm going mad, really. I have this code: public class Creazione extends TestCase { private PhantomJSDriver driver; private String baseUrl; private boolean acceptNextAlert = true; ...
1 vote
2 answers
2k views
Selenium - IE 8 - Unable to find element with link text
In Selenium test (using version 2.40.0), I am not able to find element with link text using Internet Explorer 8 remotely. It works fine with Chrome. Here there is (groovy) sample with a public web ...
0 votes
2 answers
1k views
Selenium cannot scroll a div element
I have a div element and want to retrieve it's children. In order to do that i need to get them all in view, so I decided I need to scroll for them. The thing is, I get my element but when I call: ((...
1 vote
1 answer
2k views
JavascriptError while using Internet Explorer with WebDriverBackedSelenium
I am using WebDriverBackedSelenium for the automated testing of a website but my code is working fine for the chrome and firefox but problem in IE Code is WebDriver driver = new ChromeDriver(); ...