Azure – View blob file using c# & selenium
We have a process which creates a report file ready for downloading as a xlsx file when the user clicks the Save button I want to view and verify the contents of this file as part of a selenium regression…
We have a process which creates a report file ready for downloading as a xlsx file when the user clicks the Save button I want to view and verify the contents of this file as part of a selenium regression…
I need some help here: I have a code, written on Python/Selenium that perform some actions, basic actions, get names in a website. That works perfeclty fine. The aim: The thing is... I would like to automate the action for…
I was trying to retrieve information using the Selenium library in Python, from here. This is my code, I tried accessing the elements using their XPATHs. from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support…
I am completely new to code, and was trying to create an instabot with python and Selenium. i have installed selenium through pip. but can't run it enter image description here so any help is welcome. Thank you Thomas i…
Im facing a problem in Python selenium, I would like to print on my code the following data, an email address: [email protected] I just need a hint, that's all... HTML: <section tabindex="-1" class="pv-profile-section pv-contact-info artdeco-container-card"> <!----> <h2 class="text-body-large-open mb4"> Información…
We are trying to process many pages through Selenium at the same time. We can get up to 32 sessions, but as soon as we try to increase the session count further, all sessions start becoming janky, they are error…
I'm trying to locate an element on a page. If I do Inspect Element, I can see the HTML code and the element id = username, but when I view page source, there is only Javascript code. Any idea on…
I have the following JS HTML Element: document.querySelector('[value="fixedsumcredit_kp"]') <input id="-0198e3aa-d2b1-46ce-bdf0-192e60662cd3-fixedsumcredit_kp" type="radio" name="-0198e3aa-d2b1-46ce-bdf0-192e60662cd3" value="fixedsumcredit_kp" style="height: 100%; opacity: 0; position: absolute; width: 100%; top: 0px; left: 0px; z-index: 1; cursor: pointer; -webkit-tap-highlight-color: rgba(255, 255, 255, 0);"> I tried to click it via…
I'm struggling to click this html element/locate it using selenium in python on this website: https://qualifications.pearson.com/en/support/support-topics/exams/past-papers.html?Qualification-Family=International-Advanced-Level After you scroll down press B and then Biology the pop up menu shown in the attached screenshot with "Biology (2018)" and "Biology" buttons…
I am trying to use selenium to take a screenshot of a website, which has an img tag inside a shadow root, therefore, I want to wait to this img to exist. Regularly I do something like this: await driver.wait(until.elementLocated(By.css('img')));…