0
votes
0answers
14 views

Using selenium action builder to test Drag and Drop using CSS transforms

I've currently implemented a drag and drop solution which uses a CSS transform to move an object while it is being dragged instead of using native DnD (browser reasons) or changing x,y positions. I'm ...
0
votes
0answers
10 views

Selenium: how to execute user-extensions.js from java code

I want to test a smart GWT app using Selenium. For this I need to add up 1. user-extensions.js 2. user-extensions-ide.js in the IDE. This gives an additional scLocators for locating GWT elements on ...
0
votes
1answer
28 views

InternetExplorerDriver hangs after click() is called on a button

I'm bound to using IE for a certain test and all goes well until I try to press a button, which generates a report. WebElement btn=driver.findElement(....);//gets the button btn.click(); // this does ...
0
votes
1answer
23 views

Using Selenium IDE's getEval command with FirefoxWebdriver

Hello, I have a working Selenium IDE script that is working using this code: getEval | ...
0
votes
1answer
29 views

Trigger event on text field with WebDriver execute script

I have a text field that appends values to the dom once a user hits enter. I am having some trouble simulating this with WebDriver since driver.send_keys(:return) will just submit the form instead. ...
0
votes
2answers
81 views

Use Selenium to find all “hoverable” elements on a webpage

Is there any way to use Selenium to find all of the elements that will somehow alter the page whenever they are hovered over? (Such as triggering dropdown menus, tooltip texts, or just simply changing ...
1
vote
0answers
65 views

How to export to webdriver code in Selenium IDE with Javascript

I'm using Selenium 2.0 IDE in Firefox to record my test cases. I have written some backing Javascript to help with making the program a bit more dynamic. The problem I am having is that whenever I ...
0
votes
1answer
69 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
38 views

How do you scroll a nested bar in java using or not using webdriver

Good day and thanks in advance So I have a webpage that uses iframe. Inside that iframe there is a table with a vertical scroll bar to the right. I want to know how I can scroll up and down on the ...
0
votes
0answers
47 views

How to create a new session using WebDriver.js

I am new to Selenium. I am trying to write a simple javascript test that will click on an element using webdriver.js compiled from the latest selenium open source code. I have this right now: ...
0
votes
1answer
29 views

How to configure data and pass to the test file

I would like configure all the input data in a file and would like my test read the data from that file while running test. For example, in the below I would like to configure browsername, search ...
0
votes
2answers
111 views

Unable to either launch or connect to Chrome using selenium-webdriver

I am creating webdriver as follows: var driver = require("selenium-webdriver"); driver = new webdriver.Builder(). usingServer(server.address()). withCapabilities({'browserName': 'chrome'}). ...
0
votes
0answers
52 views

WebdriverJS and drop down menus

I am running WebdriverJS on nodeJS to test the UI of a website. I want select and click on a submenu item in a drop down menubar. The submenu items are hidden by CSS. The menubar looks like this: ...
0
votes
1answer
52 views

Equivalent behaviour of 'jQuery.active' in q

In my c# selenium webdriver tests I occasionally have to make use of: public void WaitForJQuery(TimeSpan timeout) { var wait = new WebDriverWait(driver, timeout); wait.Until(d => (bool)(d ...
0
votes
1answer
815 views

Selenium(WebDriver) Cannot find and click element: <a class=“page-next” href=“javascript:gotoPage(2)”></a>

-Hello, thank you for reading my post. I have spent all day trying to figure this out. Just trying to click the above element to iterate to the next page of product reviews (this doesn't change the ...

1 2 3 4
15 30 50 per page