skip to Main Content

html Element not clickable via Java Selenium "jsExecutor"

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…

VIEW QUESTION

Html – Identifying Elements Using Python Selenium

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…

VIEW QUESTION

Locate HTML elements using Selenium Python

I've tried several ways to locate this element using driver.find_element(By.*) but have had no success. Can anyone provide guidance? HTML Elements: html elements <button class="MuiButtonBase-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium css-10qa0nr" tabindex="0" type="button"> Add Lead…

VIEW QUESTION

Parse a dynamic HTML Page in Python

I would like to scrape an HTML page where content is not static but loaded with javascript. I downgrade Selenium to version 3.3.0 in order to be able to support PhantomJS (v4.9.x does not support PhantomJS anymore) and wrote this…

VIEW QUESTION

Css – Finding nested element using Xpath in Selenium not working

given the following site and locators: https://ultimateqa.com/automation XPATH CONTAINER = (By.XPATH, '//ul[@class="bottom-nav"]') MENU = (By.XPATH, '//li[contains(@class, "menu-item")]') CSS BOTTOM_NAV = (By.CSS_SELECTOR, '.bottom-nav') MENU_ITEM = (By.CSS_SELECTOR, '.menu-item') I need to find inside the BOTTOM_NAV the number of MENU_ITEMS. When using nested…

VIEW QUESTION
Back To Top
Search