Tagged Questions
0
votes
0answers
20 views
Disable flash in saucelabs/selenium webdriver?
I am trying to use saucelabs to automate taking screenshots of several sites to make sure that changing code doesn't break things. I'm programming using webdriver for python and need to disable flash ...
1
vote
0answers
51 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': ...
1
vote
1answer
47 views
How to pass python object from one file module to another file module?
I am trying to implement page object model in python and selenium. For that matter, I have two modules:
LoginPage.py
class LoginPage:
def __init__(self, driver):
self.driver = driver
...
0
votes
1answer
39 views
How to use explicit in selenium?
i am using Selenium to get div value, but the fallowing code is not waiting for the page, just for url. I used time.sleep what is very primitive and totally not flexible. And want to change it on the ...
0
votes
1answer
159 views
Unable to set proxy :selenium.common.exceptions.WebDriverException:Access Denied
I want to use Selenium Webdriver and I am unable to do so because when I run my code, I get the following exception.
My code is very basic and as follows.
from selenium import webdriver
driver = ...
0
votes
1answer
94 views
Alternative of visibility of element located in selenium 2.0 that checks the presence of an element on the DOM?
I have a problem in my framework that instead of using static sleeps I try to wait for a visibility of an element. The thing is that visibilty of element checks the presence of an element on the DOM, ...
0
votes
2answers
70 views
How to Execute the user defined python methods using variables, read from Excel sheet
I have built my reusable framework libraries for ClickLink, TypeInTextBox etc and it sits in different python modules.
When I used the methods directly in the main class like ...
0
votes
2answers
164 views
Selenium Web Driver(Firefox) fails sometimes to find an element by id which is present in the web page
I am using Selenium Web Driver for Fire Fox to automate a web page inPython.
The issue is that sometime for some elements i am getting NoSuchElementException even though the element is present with ...
3
votes
2answers
76 views
How can I count the number of attributes of an element in Selenium Python?
Having the following HTML code:
<span class="warning" id ="warning">WARNING:</span>
For an object accessible by XPAth:
.//*[@id='unlink']/table/tbody/tr[1]/td/span
How can one count ...
1
vote
1answer
237 views
How to get the child elements using Python webdriver
How to get the child elements class name using Python webdriver
I am able to go all td element using find_elements(By.TAG_NAME, "td")
I want to access the child node
I want to get the attribute ...
0
votes
1answer
94 views
How do you remove seconds and milliseconds from a date time string in python
How I can convert a date in format "2013-03-15 05:14:51.327" to "2013-03-15 05:14", i.e. removing the seconds and milliseconds. I don't think there is way in Robot frame work. Please let me know if ...
0
votes
1answer
76 views
How to convert a date format like 'Wed Mar 13 10:10 EDT 2013' to “2013-03-13 10:10” in robot frame work or python [duplicate]
Could any one help me out to covert a date format like
"Wed Mar 13 10:10 EDT 2013" into the format like "2013-03-13 10:10" , I have tried "get time" keyword from Built-in which isn't working in this ...
1
vote
1answer
288 views
Extract link from XPath using Selenium Webdriver and Python?
I'm rather new to Seleniun WebDriver and Python and my question might be kind of basic.
So, I have the following HTML code:
<a class="wp-first-item" ...
1
vote
1answer
59 views
How to get the required content from a JSON string
I have a variable in Robot Frame Work having Json response body in the following format
{
"jsonrpc": "2.0",
"id": "787878",
"result":
{
"content":
[
{
...
-1
votes
1answer
152 views
How to wait until favicon is loaded using Selenium Webdriver
I would like to wait for the page to load completely. I know I could do this by waiting for a page element to load.
But I want something more generic, I assume that the Favicon can be used to ...
0
votes
1answer
181 views
Selenium Webdriver/Browser with Python
I need to build a Python scraper to scrape data from a website where content is only displayed after a user clicks a link bound with a Javascript onclick function, and the page is not reloaded. I've ...
0
votes
1answer
553 views
Error occurs during executing the examples of selenium with Robot Framework
on my system I had Python 2.6 and Robot framework. I have installed Selenium2Library by following the directions according to the link below:
https://github.com/rtomac/robotframework-selenium2library
...
1
vote
1answer
686 views
Selenium webdriver with Python crashes after upgrading to Firefox 18
Here is the message I recieve when trying to run: Traceback (most recent call last):
File "C:\Python27\intertwyneloginandemail", line 3, in <module>
driver = webdriver.Firefox()
File ...
0
votes
1answer
354 views
from selenium import webdriver not working?
I downloaded the Selenium Python package including server, but I get an error:
File "<pyshell#6>", line 1, in <module>
from selenium import webdriver
ImportError: cannot import name ...
1
vote
1answer
259 views
How to open new tab in same browser using robot frame work
As far as I know there is no straight keyword to open new tab in selenium2library.
I have seen the below code which opens a new tab in IE(default browser)for the given URL
...
1
vote
1answer
110 views
Can beautiful soup also hit webpage events?
Beautiful Soup is a Python library for pulling data out of HTML and XML files. I will use it to extract webpage data,but i didn't find out any way to click the buttons,anchor label which are used in ...
0
votes
1answer
70 views
Can Python be used to read the webpage grid kind of data?
I am currently working on a third party applications.Now there are some webpages where data are in Grid. So is it possible to read such grid contents from the webpage and stored it into the excel ...
0
votes
1answer
141 views
Can Python selenium be used to work with Excel sheet to store webdata?
Can I use python to work with Excel?Basically I will traverse the webpage and collect the data from the different fields and want to store them in excel tabular format.So is there any way to open an ...
0
votes
1answer
116 views
Can Python selenium be used to click on webpage labels?
I am working on third party applications where on the page too many labels are used as link or navigate to another page. So does python can do such tasks or read the page select list values?
I am ...
1
vote
1answer
86 views
How do I click a link that has only the “href” unique on a page? Selenium Webdriver - Python
Suppose you have the following list:
<ul>
<li>
<a class="sameClass" href="link1">Same Text</a>
</li>
<li>
<a class="sameClass" ...
2
votes
1answer
100 views
Selenium/Python:TypeError:undound method get()
I'm a new in Python with Selenium. I tried to test my first python/selenium code and got an error.
from selenium import webdriver
from selenium.common.exceptions import TimeoutException
from ...
0
votes
0answers
56 views
webdriver python framework
I am new to selenium webdriver + python test automation.Till now I am having and finding specific solutions to my problems.However I am wondering what others are using as standard solutions for ...
1
vote
1answer
187 views
Python: Selenium getting empty results
I am following this video to get myself familiar with selenium. My code is
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from pyvirtualdisplay import Display
import ...
1
vote
1answer
984 views
Selenium - Element is not longer attached to the DOM - Python
I'm writing code to navigate a website (as practice before testing our website) with Selenium. I'm attempting to iterate over values in 3 separate drop-down menus and retrieve an end-page with product ...