Selenium-Webdriver provides an API to control and communicate with web browsers.
0
votes
0answers
14 views
Telerik RadComboBox Automation with Selenium WebDriver / JAVA [closed]
I've tried many different ways to automate the Telerik RadComboBox, but have been unsuccessful. Apparently, no one else in the internet has figured it out either.
Please be a hero and solve this:
...
0
votes
0answers
36 views
How to correctly build class and interface tree for maintenece using WebDriver and Java
Don't kill me, this is gona by my first question here.
I'm currently learning selenium webdriver based on Java.
I know more or less how to perform most of wanted by me actions but i'm strugling with ...
0
votes
4answers
55 views
How to click on element from list which is invisible on current visible frame?
I want to click on element from a list but the problem is that, the element is present in list but due to huge size of that list required element is not visible on page (Current frame). To click on ...
0
votes
0answers
22 views
How can i get a value from the line chart using selenium webdriver to compare
How can i get a value from the line chart using selenium webdriver to compare ?
Am using selenium webdriver for automation. And i need to compare the line chart values with expected ? i would ...
-1
votes
2answers
53 views
XPATH of element with the same class name
How can I create an Xpath for individual elements within the same class name? The element ids (eg. id='some_item_12') is not constant (ie. could be 12,3, etc on next iteration) so I can't use a direct ...
0
votes
0answers
48 views
Get WebDriver's implicitly_wait value?
How can I get value of implicit wait that has been set before?
In a method which runs at start of each test, I need to test for a set of elements of which normally only one is expected to exist. ...
3
votes
2answers
41 views
How to make xpath work with Selenium when filepicker.io is loaded
After implementing filepicker.io, some of our Selenium regression tests have started failing. The failures (intermittent, but more often than not in some circumstances) are that clicks are ignored on ...
1
vote
1answer
42 views
How to change the visibility of the button got by Xpath in Selenium
Hello I am working in Selenium Automation testing with Nunit. I have one grid which have bulk of users and there is one remove button on each row of the grid. But that Remove button is visible only on ...
0
votes
1answer
64 views
Can we have two explicit waits in the same program
I have two explicit waits in the same program. One for WaitForElement and one WaitForPageLoad.But it doesn't seem to work. When i change one of them to implicit wait, it works fine. Otherwise the code ...
0
votes
1answer
42 views
issue in finding element after switchTo() in Selenium IE Webdriver
Hi I'm facing issue in trying to find element in the new window after performing a switchTo(new Handle) in IE Webdriver
The code that i'm using is
WebDriver driver = new InternetExplorerDriver();
...
5
votes
1answer
63 views
Selenium WebDriver - Is defining WebElement selectors as a By constant a good idea?
I have refactored my java project to define the WebElement selectors as By constants. This allows me to pass a By constant into my findElement method, without requiring an evaluation of the By ...
1
vote
1answer
50 views
How to click an item from a list?
Hi I need to verify if the item I'm going to click has a dollar sign and is not out of stock. So I have used this method.This works fine if the first item on the list satisfies both the condition but ...
-1
votes
0answers
31 views
How to integrate Selenium with Quality Center? Please guide me
Can anyone GUIDE me, how to integrate Selenium with QC?
Please share links, video or any document or your thoughts.
-2
votes
0answers
21 views
Selenium Webdriver - how to use HtmlUnitDriver [closed]
M also getting same problem with HtmlUnitDriver. I wrote one script, which does the login. But it works fine in firefox and IE, getting problem when I used HTMLUnitDriver. How can we use it ? Does ...
0
votes
1answer
42 views
Trying To Set Up Selenium + Behat On Mac
So I got Behat working fine with the headless browser, however I wanted to use Selenium 2 to test some JavaScript heavy pages.
When I run vendor/bin/behat, I get this error on the first scenario ...
-2
votes
0answers
92 views
how to do the database testing using selenium webdriver
I want to do database testing using selenium webdriver. Here I have small doubt after geting database ResultSet data how to verify on user interface content.
For example:
I am getting ResultSet data ...
1
vote
0answers
54 views
WebDriverException: Message: '' ; Stacktrace: Method get threw an error in [No file name]
I am running selenium test on Grid with jar 2.28.0 and the Firefox version as 18.0
Intermittently I am getting below error in few of my test cases:
self.execute(Command.SWITCH_TO_FRAME, {'id': ...
0
votes
0answers
34 views
Selenium webdriver with jquery (JAVA)
I have encountered a problem in selenium where the webdriver is unable to switch to the active frame. Usually I would just do something like this:
driver.switchto().frame(0);
But lately it doesn't ...
1
vote
1answer
51 views
Selenium Web Driver - Maven and pom.xml
I am new for Selenium Webdriver. When I start with the tool I came to know there are two things necessary to start with, which are Maven and pom.xml. But I didn't find the details on these things. ...
1
vote
1answer
24 views
How do i dump errors reported by logger.error into a file
I have a selenium script and I need to write the failures to a log file. i am using the logger.info() method to dump the required information into my file but i need to maintain a seperate errorlog ...
0
votes
1answer
27 views
Selenium 2.0 + Thucydides + Excel
I want to prepare the test where selenium has to read the data (username and password) from excel file and feed them in to login fields.
I'm using thucydides framework with selenium 2.0.
How can I ...
0
votes
0answers
35 views
Selenium & C# - run test cases sequentially for all browsers
I am using Selenium (WebDriver) and C# and have a question regarding running tests.
I have developed a number of tests and they are all working as I expect. I am able to execute them in FireFox, IE ...
1
vote
2answers
18 views
How can I run Fluentlenium Code inside Selenium Webdriver Firefox Driver?
I am having issues trying to get my Fluentlenium code to run inside the WebDriver Firefox Driver. I need Fluentlenium to execute inside the WebDriver Firefox Driver instead of opening it's own ...
1
vote
1answer
46 views
How to handle StaleElementReferenceException when verifying a text?
I have a set of common methods which I run for each test. Like I need to add a few items in my cart and the whole test runs for each item. But for the first item it runs fine and when the process is ...
1
vote
0answers
42 views
Unexpected error launching Internet Explorer. IELaunchURL() returned 80070490 for URL 'http://mymachine:35609/'
I have written a webdriver test which I am trying to run via Jenkins distributed node. Here is the code snippet.
WebDriver driver=null;
try {
System.setProperty("webdriver.ie.driver", ...
0
votes
0answers
19 views
Selenium/Webdriver Grid 504 Gateway Timeout
I'm running about 400 tests in the Selenium (WebDriver) Grid that has 5 VMs with 5 browsers each. A lot of these tests fail randomly with the following error.
[error] System info: os.name: 'Linux', ...
-2
votes
1answer
52 views
How to select context menu items without keyboard input in selenium webdriver?
I am able to select the context menu item by providing keyboard input. i just wanted to know whether there is any way to select a context menu item without keyboard input in Selenium WebDriver.
Thank ...
-3
votes
1answer
27 views
How to get random numeric starting with 9 as first defined number in selenium IDE? [closed]
How to get random numeric starting with 9 as first defined number in selenium IDE
0
votes
0answers
52 views
Selenium web driver and multillanguage
I use selenium webdriver +java. When I want to get some data/text by xpath, for example
driver.findElement(By.xpath(".//table[3]/tbody/tr/td/table[1]/tr[1]/td[1]")).getText()
If I want to get ...
0
votes
1answer
80 views
Method invoking twice when using TestNG in Selenium Web Driver
I have tried to implement inheritance in Selenium Web Driver.In Countrychoser class,I have called Basic() method from Baseurl Class.When I tried to execute in TestNG,Browser invoked twice.But in ...
0
votes
1answer
138 views
NoSuchMethodError: org.apache.http.conn.scheme.Scheme.<init>(Ljava/lang/String;ILorg/apache/http/conn/scheme/SchemeSocketFactory;)V
I am running selenium test in maven project.This project is GWT Web application.There are GWT dependencies,hibernate dependencies in pom.xml.I have created a new class in test package to run the ...
1
vote
2answers
33 views
Avoid opening browser on remote server during selenium call
I have written a selenium application using webdriver. I wish to run it on a remote server. When I do that by logging into the server via putty (along with Xming), the selenium tries opening the ...
1
vote
1answer
81 views
How to pass through window asking for basic auth credentials that appears when click link redirecting from HTTP to HTTPS?
I have a website where most of pages are normally used via HTTP but some other pages are available only via HTTPS. Site is protected by basic auth (credentials are the same for HTTP and HTTPS pages).
...
0
votes
2answers
40 views
Select element not returning webelement from .first_selected_option() method
I'm currently experiencing some difficulties writing a method that will allow me to find the value of the currently selected option within a Select element.
<select id="select_foo_bar">
...
0
votes
1answer
94 views
How to Upload files using Selenium webdriver in Java
Can anyone let me know how to upload a file using selenium with java code?
When i click on browse button in the application it gets open in the new window.. Using that i can select the file.
The ...
0
votes
0answers
34 views
(NS_ERROR_MALFORMED_URI) [nsIIOService.newURI] When executing a user keyword taking 'URL' as arguments
When I execute the user keyword, I get the following error:
Message: u'Component returned failure code: 0x804b000a (NS_ERROR_MALFORMED_URI) [nsIIOService.newURI]'
My test:
*** Settings ***
...
0
votes
1answer
75 views
FireFox Selenium Webdriver does not load Jquery from Google Api
I am using Selenium Webdriver api to drive firefox. The problem is that the jquery files located at the Google api web site are not loading. Which caused an error.
What should I do so that the files ...
1
vote
0answers
70 views
Selenium: Clicking link and alert acting weird (flashing then disappearing)
I'm writing an automated test against a Salesforce site. I'm using Firefox version 21.0 and Selenium version 2.33.0.
During the test, I have a couple of alerts to deal with (with one "okay" button) ...
1
vote
1answer
63 views
Selenium WebDriver Recorder for PageObject pattern
I know there are the Selenium IDE and the Selenium Builder as a Firefox plugin to record actions and export them e.g. as C#-Code.
But is there also a tool which helps you with creating Selenium (2) ...
1
vote
1answer
47 views
Selenium WebDriver and Junit Class design
I am fairly new to Selenium WebDriver and JUnit, I am testing a web app and was wondering is my class design correct in Junit for testing the UI?
As I have seen instances of where people have used ...
0
votes
1answer
58 views
Functional testing clickAndWait not working
I am writing web application in yii with the phpunit selenum testing here is my test case for the login form
public function testHasLoginForm()
{
$this->open('site/login');
...
1
vote
0answers
115 views
Selenium WebDriver C# - Unable to redirect to a secured (HTTPS) URL / driver.Url or driver.Navigate().GoToUrl does NOT work in HTTPS?
Good day! I have been using Selenium WebDriver for a few months now, and everything works awesomely fine.
However, I have been stuck with this strange problem for weeks (or maybe a month) already.
...
0
votes
1answer
55 views
Selenium WebDriver JS - Explicit Wait
I am using the selenium-webdriverjs. I want to wait for a certain element to be displayed for which I have created an explicit wait as follows and it works just fine,
var displayed = false;
...
0
votes
0answers
41 views
writing contents in a table in a webpage into excelsheet
guys this is the code for which i need get the website address into an excel sheet... but am unable to do so. its now showing me any kind of errors but the output is also not printing. kindly help.
...
0
votes
1answer
56 views
How to change browser mode on IE with selenium?
I'm trying to run a different browser mode on IE with selenium using c#. Here's some code:
var ieWebDriver = new InternetExplorerDriver(@"PATHTOWEBDRIVER");
ieWebDriver.Keyboard.SendKeys(Keys.F12);
...
0
votes
1answer
50 views
Multiple browser screenshot with Selenium
I'm completely new to Selenium but I'm aware it's capable of taking browser screenshots. Though, I was wondering if it's able to take screenshots of multiple browsers, specifically chrome, firefox and ...
0
votes
0answers
41 views
JUnit/Selenium throwing error for driver.manage().window().maximize()
Code:
if (driverType.equals("firefox")) {
driver = new FirefoxDriver();
driver.manage().window().maximize();
}
Error:
[javac] symbol: method window()
[javac] location: ...
-1
votes
4answers
84 views
Object reference not set to an instance of an object
When I run this program in NUnit I get an error
Object reference not set to an instance of an object.
Though this is not the original program I get a similar error there too. Any help ...
0
votes
1answer
57 views
Selenium - Get elements html rather Text Value
Via that code i have extracted all desired text out of a html document
private void RunThroughSearch(string url)
{
private IWebDriver driver;
driver = new FirefoxDriver();
INavigation ...
0
votes
0answers
59 views
FluentAutomation and Selenium 2.33.0.0
I'm getting the following exception when I try to run a test with FluentAutomation
A first chance exception of type 'System.IO.FileLoadException'
occurred in FluentAutomation.Core.dll
Could ...
