Not getting displayed all vlaues
Not looping through for loop. giving me the correct size but only first value(text) get fetch and displayed on the console, i want to display all the values(texts) on the...
View ArticleProblem with updating data after a option was selected in a dropmenu with...
I am trying to obtain a database from a website, the page shows this information by months. Specifically by a dropmenu, where one can choose the month and year, and all data below this field is updated...
View ArticleProblem using chromedriver 78.0.3904.70 locators
I'm using the latest 78 chromedriver , I'm trying to locate an element inside a modal via CSS Selector, something that looks like this [data-qa='generalTab'] > [id='ui-id-1'], I was able to run my...
View ArticlePossible issue with Chromedriver 78, Selenium can not find web element of PDF...
Until my google Chrome wasn't updated to version 78 my code worked fine. I also updated the chromedriver to version 78.0.3904.70. So I am not able anymore to find WebElement with id='plugin' using...
View ArticleUsing selenium: How to keep logged in after closing Driver in Python in whatsapp
I don't want to log in over and over again in https://web.whatsapp.com. I've tried some solutions but it's not working using selenium chrome driver.options=Options...
View ArticleMy selenium code is not working and giving element not interactable error
I've tried everything from waits to xpath but it's not working somehow, I want to enter some value in input field on the page with id, but its not becoming interactable, any help would be...
View ArticleCan't locate element inside of images window in gmail
I'm trying to create a script that will automatically send gmail using selenium, it works fine for sending simple text messages. However, I want to it allow to send images as well, but when I click on...
View ArticleClicking on an img with Selenium
I'm pretty new to coding in Python and in general. So far, I've...
View ArticleEmbed html with image path in Gmail with python
I am making a notification system which sends emails with a html table which has images.the images shows up fine in the actual page. I am grabbing the table source with selenium (changing all relative...
View ArticleHow to do loop with click() in selenium?
I want to click every members' group profile on Facebook, but I get an error in looping.Here is my code:def open(link): try: driver.get(link) except: print('no internet access') def...
View ArticlePython Webscraping Google play store with BeautifulSoup leads to duplicate...
I'm scraping the play store for a div attribute that shows the ratings for a product (a movie). The rating is within this div class:zc7KVeI search for that and store it in the "rating" variable. When...
View ArticleUnable to locate element: //*[@id="US-6"] with xpath
Goodmorning everyone, after 2 hours to search on web i'm here is my first post here ... I am experiencing the following problem. I'm trying to select the next size every time I find this ... example: |...
View ArticleWebdriver Loss of Control
Sometimes the connection to the selenium driver is lost due to an error occurring. How to regain control of webdriver without reloading the domain being tested? I'm doing tests using C # Thanks so much...
View ArticleShadow DOM with Python Selenium Geckodriver
I am trying this code to access a shadow root element on the following website...
View ArticleSyntaxError: invalid syntax while using find_element_by_xpath using Selenium...
Code Trials:from selenium import webdriver driver = webdriver.Firefox() driver.get("http://www.niftyindices.com/reports/historical-data") driver.maximize_window()...
View ArticleSelenium : Please protect ports used by ChromeDriver and related test...
I am connected to VPN through my local machine and trying to execute a selenium script on chrome browser then I am getting the following error:Only local connections are allowed. Please protect ports...
View ArticleHow to deal with Modal Boxes on Selenium Python Google Contacts [closed]
I have made a code which should automatically add a contact to Google Contacts. I'm on it's last stage but due to pop up of a modal box everything changes. from selenium import webdriver from time...
View ArticleHow do i display values in tabular format and then have to write it down on...
Basically having 6 different for loops and wanted to print the values on each iteration from each for loop one value and that is into tabular form. The size of each loop is different.In final output...
View ArticleClean cookies in default Chrome using chromedriver
I have my Chrome browser and I want to automate some actions using chromedriver. But when I use my default profile (default user or new "bot" profile) I always start with cleared cookies for that...
View ArticleHow to keep selenium webdriver running as part of before_tag hook using...
I am using behave framework for testing and some features files do not require a browser to run against. So I am trying to use fixtures with tags as described in...
View Article