Selenium-Webdriver provides an API to control and communicate with web browsers.
0
votes
0answers
3 views
Unable to select popup window using selenium webdriver in python
I clicked on a link which opens a small window/popup/iframe and the popup window has Xpath:
//html/body/div[2]
ie. it has no window_id but in firebug the identifier shows the window as a <div ...
-1
votes
0answers
14 views
Keyword Driver Framework
I developed Keyword Driven Framework for one site already and it works well. Now I need to create it for a second site and I am trying to click link and it doesn't work. Did someone face this issue or ...
0
votes
0answers
12 views
Assertion error (TestNG) catching issue using java
please find the code
Test(dataProvider = "User_login")
public void StatusForm_Verification(String uname, String pwd)
throws InterruptedException {
try {
NavigateToLogin();
Dashboard RD = ...
0
votes
3answers
17 views
Check if login was sucessful with Selenium
Im just getting to grips with Selenium, and have made a simple login script using the Firefox IDE, what i now want to do is check that the login was succesful, the simplest way i could think of doing ...
1
vote
0answers
11 views
How to open Safari browser using webdriver in MAC OS X 10.7?
I am unable to open safari browser using webdriver.
While executing test script it display something in console but browser haven't open.
I want open safari browser same as firefox.
this was ...
0
votes
0answers
26 views
How to prevent css and img download in selenium
Is it possible to prevent img and css download in phantomjs webdriver(selenium)?
1
vote
2answers
34 views
Selenium or Watir Webdriver, how to save resized screenshot?
I try to get a resized 400x400 screenshot of google. I try this both in Selenium and Watir with no success.
require 'watir-webdriver'
b = Watir::Browser.new
b.goto 'google.com'
...
1
vote
2answers
25 views
Ruby- Selenium: Could we find an element by its 2 properties in parallel at the same time?
First of all, we have an element like that:
"<"id="select_a_boundary" class="dataset_select2">Homes name<>
As we know, when find an element by selenium in ruby based on a property we use the ...
0
votes
0answers
6 views
Display Behave result in html format
I am using Behave framework (python) with selenium webdriver, and I want to store execution report in HTML format. Please suggest me.
thanks in advance.
0
votes
1answer
23 views
How to verify if Tab on Web Page is selected using Selenium RC..?
How to verify if Tab on Web Page is selected using Selenium RC
I wanted to one very simple thing. Does anyone know using selenium RC Python Client how I can know if a Tab is selected on web page?
By ...
1
vote
0answers
18 views
Selenium Webdriver requires restarts to function consistently
My testing stack consists of the latest version of Selenium Server (2.33.0, aka selenium-server-standalone-2.33.0.jar), Mocha, Node.js, and PhantomJS.
My question regards the following code:
var ...
0
votes
0answers
7 views
BrowserMob Proxy with Selenium Webdriver - SSLHandshakeException while trying to access a URL with SSL
I am trying to access a service on SSL & encountering SSLHandShakeException. The code works perfectly fine for non-SSL URLs.
I have also installed CyberVillians Certificate onto my FF Profile.
FF ...
0
votes
1answer
17 views
Is Selenium suitable for use as an automation tool - as you would use cURL
For several reasons we cant use cURL to preform automated tasks on a 3rd party site, we've tried using selenium instead and via the php integration we can get it to work and preform the tasks we need. ...
0
votes
4answers
42 views
Need to hover over menu before the element to be clicked on is available?
Need to hover over menu before the element to be clicked on is available!
Element is not currently visible and so may not be interacted with (WARNING: The server did not provide any stacktrace ...
0
votes
4answers
40 views
Selenium - difference between @FindBy and WebElement.findElement()
I am using Selenium to Test my User Interface.
I am trying to use the @FindBy-Annotation. The following piece of code works fine:
@FindBy(how=How.XPATH, xpath ...