downloading a table from the web
I want to extract a table from this website after clicking on "National Data". I know there is an option to download it directly but I'm very interested in web scraping and I want to learn. Previously,...
View ArticlePython - Selenium works in Prompt but not in Scripts [duplicate]
(base) C:\Users\ac34450\Automation\Python>testENV.py Traceback (most recent call last): File "C:\Users\ac34450\Automation\Python\testENV.py", line 15, in <module> import RFMlib as rfm File...
View ArticleHow to import date value to Google Form using selenium [closed]
I'm trying to write a script to auto-fill a Google Form with dates and times, and I figured out everything apart from the date section. How can I push the current date from my python script into the...
View ArticleWeb Driver returns an empty list when trying to access console log entries
I am running some tests in Selenide, and I need to display the content of the browser console at some point:LogEntries logs = getWebDriver().manage().logs().get(LogType.BROWSER);...
View ArticlererunFailingTestsCount=N is not working for me
i am tryring to rerun the failed tests using maven surefire plugin using parameter "rerunFailingTestsCount=N"i am not able to achieve retry with following POm and my runner class, tried with difference...
View ArticleError when loading cookies into a Python request session
I am trying to load cookies into my request session in Python from selenium exported cookies, however when I do it returns the following error: "'list' object has no attribute 'extract_cookies'"def...
View ArticleHow to navigate to a particular tab when multiple page windows open at the...
Lets assume, I've to click on a link that open 4 more tabs. I want to shift it to 3rd tab.
View ArticleIEDriverServer sends text very slowly using Selenium to the search field
I'm using selenium and python on windows7.My code:import os from selenium import webdriver # get the path of IEDriverServer #dir = os.path.dirname(__file__) #ie_driver_path = dir +...
View ArticleSelenium performance with InternetExplorerDriver and IE11
I am facing a very slow response when running my scripts on IE11. Sometimes, I get FocusWindowsClosed, ElementIsNotClickable. I have changed the zoom settings for all zones, created feature BFCACHE for...
View ArticleHow to extract the text of the firstselectedoption from a dropdown using...
After selecting an option from drop-down. I am trying to get that option displayed in the console. below is my code. But I get "//[[[[ChromeDriver: chrome on WINDOWS (d5a01776981da5dacfeb89dbbc2e6b52)]...
View ArticleSelenium Web driver IE 11 [duplicate]
I am new to selenium and trying to execute my selenium web-driver script on IE 11 with window 10 combination sometime its run really slow and most of the time test fails with...
View ArticleHow to set Chrome experimental option same-site-by-default-cookie in python...
I suppose this should work:from selenium import webdriver options = webdriver.ChromeOptions() options.add_experimental_option('same-site-by-default-cookies', 'true') driver =...
View ArticleFinding elements by xpath
Please help me I am trying to select a picture which is a link (a trainer on a website)This is my code:login = browser.find_element_by_xpath("a[title=\"ACG Air Moc 3.0 'Cargo Khaki/Oil Green' Release...
View Articlemodule not found 'kivy' pyinstaller
So I have a application (made with kivy) that I want to turn into an exe using pyinstaller. Ive installed pyinstaller correctly and used it in the correct directory however whenever I try to run the...
View ArticlePartial screenshot selenium python firefox webdriver
Im using ubuntu server 16.04 x64 And im trying to take partial screenshot of image in the page. But its taking screenshot all of page.My code is:qr =...
View ArticleUsing chromedriver with selenium/python/ubuntu
I am trying to execute some tests using chromedriver and have tried using the following methods to start chromedriver.driver = webdriver.Chrome('/usr/local/bin/chromedriver') and driver =...
View Articlehow to resolve xpath for selenium throws...
How to resolve Method threw org.openqa.selenium.InvalidSelectorException exception when we have the xpath has //td/text()[following-sibling::br and contains(.,'text')]Edited: My bad, misspelled. I need...
View ArticleRselenium javascript doPostBack to next page
Hi I run into this problem whereby the page is a table written in .aspx. It a table with buttons to click next 25 row of results. I am a completely noob at javascript.I am currently using Rselenium and...
View ArticleCheck element exists using PHP Selenium 2 Webdriver?
I am trying to check if an element on a page exists by CSS using Selenium 2. Anyone have any examples using PHP Selenium Webdriver Facebook wrapper?I have tried the below...
View ArticleHow to replace a button text with customized text using Selenium Python (MacOS)?
I want to basically do a temporary edit to a webpage (like how people do it using inspect element) but have it done automatically using selenium. For example this is an image from google.ca...
View Article