Crawling Highcharts via python selenium ( javascript error: Highcharts is not...
I would like to crawl graphs from a website. It is a graph that shows the search trend of a certain keyword. But the thing is that the graph is interactive. It would only pop up when I click the...
View ArticleHow to parse webpage one by one while next button is clickable using Selenium?
I need to parse page one by one while next button is clickable. I'm connecting to the first page by default and parsing up to the last element from this page:...
View ArticleSelenium and Python selenium.common.exceptions.NoSuchElementException:...
I am trying to crawl resumes on Indeed using the following repository https://github.com/GowthamGottimukkala/Indeed-resume-scraperAfter fixing a few issues, I'm now trying to scrape using python...
View ArticleHow to setup allure-report in nightwatch?
I am pretty new to allure-report. Can someone share the setup and configuration part of allure-report in nightwatch ?.
View ArticlePython - Can Selenium detect an open website? [duplicate]
I'm learning a bit of Selenium and all examples that I find start by opening a new browser window with a specified url. For example: browser.get('http://old.reddit.com/')From that point onward I am...
View ArticleSelenium C# Script to test the standard login password requirements
Is there any Selenium C# Script available to test the standard login password requirements e,gTo Register you must use a password with at least eight characters and contain at least three of the...
View ArticleParallel execution in selenium c#( not tests but a script)
I have a script that performs a specific operation for an ID(like login to the website and perform an action). The project is not a test project rather a simple WPF application. Since my script will be...
View ArticleHow to execute specflow feature files in different environments and different...
I am using specflow + specrun for automation project.we have 3 environments staging, uat and production .so I have to pass environments dynamically through command line which I want to run and some...
View ArticleWebscraping for all the combination of dropdown extract values
I am trying to extract price information and h1 tag information from cars.com, there is a dropdown list to search the page.I want to select different models and search for price. But 'model' selection...
View ArticleHow to automatically accept Chrome's "Always open these types of links in the...
I'm automating tests using Selenium and C# and I need to open an external app from the browser. The problem is, I always get this notification and it blocks the test execution.Does anyone know how to...
View ArticleHow to disable "always open these types of links in the associated app"...
While executing my Protractor tests in Chrome I'm getting an alert similar to below:I want to accept it to be able to continue with my tests execution.First I've tried with...
View ArticleHow to send AppleID to the Sign in field using Selenium and Python
Why is this incorrect:Web page: https://idmsa.apple.com/IDMSWebAuth/signin?appIdKey=a01459d797984726ee0914a7097e53fad42b70e1f08d09294d14523a1d4f61e1&rv=2&path=Steps followed:Inspect, element...
View ArticleHow to click on the toolbar element using Selenium and Python
I have a question, I'm developing test automation and I want to click on element located in toolbar,I'm using python and selenium. Here is a code of website<dl class="ToolbarDropdown_menu_2wY9X...
View ArticleLogin to Yahoo using Python Selenium
My question actually is the same as this one login to yahoo email account using Python Selenium webdriveBut since Yahoo has changed its login form UI, the answer provided in the above link doesn't work...
View ArticleCan't locate element on Microsoft Sign In page
I'm currently trying to locate Microsoft Sign In page's email input box by using xpath (others as well) but after many tries I still can't locate the correct element for it.After copying the element...
View ArticleHow to extract specific text from a text node using Selenium
<div class="amlocator-store-information" style="" xpath="1"> <div class="amlocator-title" style="">The Better Health Store</div> 2420 E-Stadium Ann Arbor MI 48104 <br><br>...
View ArticleSession is getting lost after windows authentication login using Selenium java
My application has windows authentication and I am using browser IE11(win 10) to run/automate the application.I used below code for loginInternetExplorerOptions ieCapabilities = new...
View ArticleFinding page element using selenium(Python)
Im trying to find the username path for the login page on https://www.textnow.com/login. I've tried finding it by x_path, ID, Name, class but my bot just cant find it. Does anyone have any possible...
View ArticlePython, Selenium Webdriver: How can I find the value of this attribute?
I'm working on a python script to get some data from a website using selenium Chrome webdriver. Finding the elements needed worked fine for me - until now. Now I'm trying to get an advertisement-ID...
View ArticleHow to clear text field before sending keys selenium c#
I'm writing a simple selenium test which sends an incorrect string of letters then submits and returns and error. I want to then send a string of letter but this time with the correct string so it is...
View Article