Tag Info

New answers tagged

0

On trying to perform drag and drop using selenium webdriver , the following traceback is thrown . File "/Library/Python/2.7/site-packages/selenium-2.15.0-py2.7.egg/selenium/webdriver/common/action_chains.py", line 44, in perform action() File "/Library/Python/2.7/site-packages/selenium-2.15.0-py2.7.egg/selenium/webdriver/common/action_chains.py", line ...


0

I am just going to put a brief of what i found out and what i did to solve my problem. And will pose a few questions at the end of the explanation of the behavior i am observing. First to put the pseudo html below <div id="reminder"> <div> <ul> <li> <strong>text i need</strong> </li> ...


0

A DOM agnostic method seems like a bad idea. The above code completely tanked in Firefox driver for "going outside of document" exception. The best thing which I could come up with, is to set the mouse cursor to the (0,0) position of the most root element on the page or (which in my case is an IFrame holding the single page javascript app) and use ...


0

It realy surprising you are able to get attribute title but not text, Can you give one try with driver.findelement(By.xpath("//a[@id='551' and contains(text(),'Country')]")).isDisplayed(); or driver.findelement(By.xpath("//a[@id='551' and text()='Country']")).isDisplayed();


0

Have you tried this element = browser.find_displayed_elements(By.CSS_SELECTOR, '#container') source_code = element.get_attribute("innerHTML") # or source_code = element.get_attribute("outerHTML")


0

Yes uncomment it, alternatively you can ping localhost to see if you are resolving the name properly


0

By default, Selenium uses a Firefox profile which is separate from your normal profile when you open the browser manually. So, plugins you've added using your normal profile will not be available to Selenium by default. So, if ads are injected into a page by a plugin you've installed, that would explain why you aren't seeing them without the plugin when you ...


0

I found the solution, I had to add Thread.Sleep(new TimeSpan(0, 0, 3)); before clicking the link.


0

Not sure if it is your problem, but in order to 'point' Selenium to where Firefox is located, you are looking for the FirefoxBinary class: var binary = new FirefoxBinary("pathtofirefox"); string path = @"C:\Portable"; FirefoxProfile ffprofile = new FirefoxProfile(path); var driver = new FirefoxDriver(binary, profile);


0

I'm using this since the begin and it always work. =) System.setProperty("webdriver.chrome.driver", "C:\\pathto\\my\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.get("http://www.google.com");


0

try out the gem 'cucumber-ajaxer', by this Cucumber should wait for AJAX calls in @javascript Scenarios


0

Right I see your problem: It's very simple, in your __init__ in LoginPage you are calling self.driver.title() however, as per the basic selenium example on their page, it is just self.driver.title (without the brackets). title is an attribute rather than a callable method, hence the error.


0

This is an exemple of : org.openqa.selenium.StaleElementReferenceException WebElement element = driver.findElement(By.id("input123")); // get the input WebElement button= driver.findElement(By.id("btn123")); // this button sends the form button.click(); element.sendKeys("the cache is already released.."); // error here So i think this come from your ...


3

thoughtworks.selenium is the original Selenium (aka Selenium 1, or Selenium-RC). openqa.selenium is Selenium 2 aka Selenium WebDriver.


0

Adding this option at the end of the command to start my node got everything working. Is this just poorly documented? did I miss something obvious? or is there still something weird going on? -Dwebdriver.ie.driver=C:\selenium-server\IEDriverServer.exe


0

Create a json file with all the configuration options, and iterate over them. { "config": [ { "browser":"Firefox", "searchParameter":"parameter", "serverAddress":"127.0.0.1" }, { "browser":"Chrome", "searchParameter":"parameter", "serverAddress":"127.0.0.1" } ] } So, create a loop, and ...


0

You can use a decorator around each test, the details of which have already been described online. In case you're worried about forgetting to decorate new tests, or you don't want to bother decorating a bunch of existing tests, you can use a metaclass to wrap all of the test functions. The How to wrap every method of a class in python? answer provides the ...


0

Since the chrome webstore doens't seem to have button to click and submit the search, you could, instead, send the carriage return character and get it to trigger the search result. Try something like this: var client = require('webdriverjs').remote(); client.init() .url('https://chrome.google.com/webstore') .setValue('#searchbox-input','sampleapp ...


2

Change IWebElement url_parse = driver.FindElement(By.TagName("inputurl")); to IWebElement url_parse = driver.FindElement(By.Name("inputurl")); UPDATE Just noticed that the element is inside an iframe. You need to switch to it before trying to find the element. driver.SwitchTo().Frame("c-analyzer"); #and then IWebElement url_parse = ...


0

Actually, your inputurl from IWebElement url_parse = driver.FindElement(By.TagName("inputurl")); is wrong because there is no inputurl tag in in the html source. What i can suggest ? Try to use this selector instead yours IWebElement url_parse = driver.findElement(By.cssSelector("div.mfid-v3 input")); i hope this is that input that you're looking for. ...


0

Yes, it's possible to get not only its location, but also its size. For instance, in Java you can get the coordinates and size of every flash object with this code: listFlash = _driver.findElements(By.xpath("//object[@type=\"application/x-shockwave-flash\"]")); for (WebElement flash: listFlash) { System.out.println("Coordinates: " + ...


0

The magic combination that worked for me was Firefox 19.0 and selenium web-driver 2.32.1 (latest at the time of writing). Firefox 20.x and 21.x did not work. I had to downgrade Firefox. Also keep in mind that (at least on Mac OS), if you go to FireFox Menu -> About Firefox, it will automatically upgrade to the latest release. Don't do that.


0

Testing experience from me: I work for German company, placed in Czech Republic. And there is the page which targets Czech audience. So the AdWords are made for Czech people. But the company firewall is placed in Germany, which means, that the page thinks I sit in Germany, although I sit in Prague. Which also means that no ads are being displayed to me. ...


1

The tearDown() method is used to restablish the state prior to the test. This is why it has the Junit clause @after. This function will be called after every test execution in that class. You can also use a setUp() method with a @Before clause to prepare every test. The first line of the method: driver.quit(); closes the browser (aka webdriver). Next ones ...


1

You will probably want to keep the setup() and teardown() methods. The setup() method is what is used to start your browser session before running your test, and teardown() is used to cleanly exit it when the test has completed.


0

Thanks for the Answer. I did the below to achieve my query. Execute a javascript to open a new window. IJavaScriptExecutor jScript = driver as IJavaScriptExecutor; jScript.ExecuteScript("window.open()"); Switch to the newly opened window. List<string> handles = driver.WindowHandles.ToList<string>(); ...


0

I've found the error... When i call the getter i was using : getId() instead of getIdPo(). But Eclipse never underline getId() .. don't really know why.. because it doesn't exist in my code..


1

You can get a reference to the current window with driver.manage().window(). And the window has a setSize() method, so you could try driver.manage().window().setSize(dimension)


0

An easier way to do that : WebElement table = driver.findElement(By.cssSelector("table.jtable")); List<WebElement> rows = table.findElements(By.tagName("tr")); for (WebElement row : rows) { if(row.findElement(By.cssSelector("td:nth-child(2)")).getText().equals("expected name")) row.findElement(By.cssSelector("td:last-child input")).click(); } ...


1

the best way is to use cssSelector() for that kind of things, and especially the nth-child() function from cssSelector(). Exemple : // gets the first div that contains school as a class value. driver.findElement(By.cssSelector("div.school:nth-child(1)")); More about cssSelector() exemple wokring here -> JSfiddle


0

Something else is wrong, you probably want to provide more info, so we can sort somehting out. The following code works fine on getting text from strong: (Python 2.7, Selenium 2.32.0, Firefox 21) from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait driver = webdriver.Firefox() ...


0

I can't provide more help if you don't provide any code. But here's demo you can have a look. Basically, you can get all css values by WebElement.getCssValue method. http://jsfiddle.net/RuuYs/ <input id="txtTest" /> <button id="submit" onclick="document.getElementById('txtTest').style.background = 'orange';">Submit</button> WebElement ...


2

If you need to driver a different browser window or iframe, you need to use switchto. From the WebDriver faq: Q: How do I handle pop up windows? A: WebDriver offers the ability to cope with multiple windows. This is done by using the "WebDriver.switchTo().window()" method to switch to a window with a known name. If the name is not known, you can use ...


0

Chromedriver version should be the latest. Once, I updated the chromedriver, the issue is fixed. I updated chromedriver on Mac using homebrew as follows: brew update; brew upgrade chromedriver


0

I suspect it can't find chromedriver.exe to start. In this line: System.setProperty("webdriver.chrome.driver", "chromedriver.exe"); the point is to tell it exactly where to locate chromedriver.exe, including the full path. You might need to change that to something like: System.setProperty("webdriver.chrome.driver", "C:\My\Path\To\chromedriver.exe"); ...


0

It seems like you don't have chrome driver bin setup. See my previous answer here System.setProperty("webdriver.chrome.driver", "\pathto\my\chromedriver"); WebDriver driver = new ChromeDriver(); driver.get("http://www.google.com");


0

Following code sets automatic proxy configuration url: require 'selenium-webdriver' profile = Selenium::WebDriver::Firefox::Profile.new profile['network.proxy.type'] = 2 profile['network.proxy.autoconfig_url'] = "http://abc.xyz.com/tester/proxy" driver = Selenium::WebDriver.for :firefox, :profile => profile


0

This isn't an answer directly to what you've asked but a suggestion. Rather than code directly against Selenium I would suggest using something like Capybara. You can then use the Selenium webdriver on your developer boxes to see what is happening in the browser if you have the physical need; then you can easily switch to using a headless driver like ...


0

I fixed this problem. I was (accidently?) using the wrong driver version: From https://code.google.com/p/chromedriver/downloads/list , I downloaded this version: " chromedriver_linux64_26.0.1383.0.zip ChromeDriver server for linux64 " Instead of my previously selected: " chromedriver2_linux64_0.8.zip version of ChromeDriver2 r195627 Release " ...


0

There is one way i am aware of, but that can should implicate in some problems if you decide to run the same test in parallel. I'd advise you study a little bit about static parameters to see if it suits you. When you start your first test do it as follows: static WebDriver driver = new FirefoxDriver(); // Could be any Driver(); That way any test that ...


0

public static void main(String[] args){ WebDriver webdriver = new FirefoxDriver(); webdriver.get("http://www.makemytrip.com"); if(webdriver.findElement(By.id("oneway_r")).isSelected()){ Select leavingfrom = new Select(webdriver.findElement(By.xpath(".//*[@id='selorigin_s']"))); leavingfrom.selectByVisibleText("Hyderabad(HYD)"); } ...


0

Sorry, I'm not enough good at JAVA. But following logic will help you to write Java code: table = driver.find_element(:id, "table_id") rows = table.find_elements(:tag_name, "tr") len = rows.length len.times do |i| if table.find_element(:xpath, "//tr[#{i+1}]/td[2]/div").text.eql? "expected_text" table.find_element(:xpath, ...


10

You should invest in Page Objects, it's a very useful pattern: https://code.google.com/p/selenium/wiki/PageObjects It will help seperate the test from the implementation. By that I mean, the test should be left detailing what steps are taken, the implementation (the 'page object') should detail how those steps are taken. As for the XPath's themselves, ...


0

In order to reuse the browser, you can't initialize it in every test, so you need to use a singleton pattern in which you will have an unique webdriver. So, instead of using the @before and @after clauses to initialize and close that browser, you want to use @beforeclass and @afterclass. Then, every test method in that class will use the same browser, from ...


0

What you are using is not a model dialog, it is a separate window. Use this code: private static Object firstHandle; private static Object lastHandle; public static void switchToWindowsPopup() { Set<String> handles = DriverManager.getCurrent().getWindowHandles(); Iterator<String> itr = handles.iterator(); firstHandle = itr.next(); ...


0

You are seeing this because you are asking the code to essentially print ele.toString(). Which, according to the source, is going to give the exact message you see: https://code.google.com/p/selenium/source/browse/java/client/src/org/openqa/selenium/remote/RemoteWebElement.java#375 Specifically: public String toString() { if (foundBy == null) { ...


0

For this to work, you need to: Install Chrome Install Chrome Web Driver Make sure you have the chrome web driver in you path, for example on Windows something pointing to chromedriver2_win32_0.8. You can put that in your path by either: (a) Modifying your windows path environment variable, or; (b) adding the following to your java command line options: ...


0

For chrome to work with selenium-webdriver you need to have not only a working chrome browser installed, but also the chromedriver executable. Note that these are TWO different executable files that both need to be specified.


0

How can i replace time.sleep with something flexible to wait shortest time as possible after the page will be loaded? I suppose you use get(url) to load the page. Generally you don't have to do anything, WebDriver automatically waits until page is being loaded. So you can remove time.sleep(). However there are some issues reported when loading the ...


0

You have to use String's format method for this. define a variable like String xpath = "//table[@width=\"270\"]/tbody/tr[%s]/td"; as a template before the loop Then in the for loop use String xpathOfElement = String.format(xpath, String.valueOf(i)); However ideally you have to wait for elements before getting their properties.



Top 50 recent answers are included