Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      May 22, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      May 22, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      May 22, 2025

      How To Prevent WordPress SQL Injection Attacks

      May 22, 2025

      Sam Altman says ChatGPT’s viral Ghibli effect “forced OpenAI to do a lot of unnatural things”

      May 22, 2025

      How to get started with Microsoft Copilot on Windows 11

      May 22, 2025

      Microsoft blocks employees from sending emails that mention “Palestine” or “Gaza”

      May 22, 2025

      I missed out on the Clair Obscur: Expedition 33 Collector’s Edition but thankfully, the developers are launching something special

      May 22, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      Perficient is Shaping the Future of Salesforce Innovation

      May 22, 2025
      Recent

      Perficient is Shaping the Future of Salesforce Innovation

      May 22, 2025

      Opal – Optimizely’s AI-Powered Marketing Assistant

      May 22, 2025

      Content Compliance Without the Chaos: How Optimizely CMP Empowers Financial Services Marketers

      May 22, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Sam Altman says ChatGPT’s viral Ghibli effect “forced OpenAI to do a lot of unnatural things”

      May 22, 2025
      Recent

      Sam Altman says ChatGPT’s viral Ghibli effect “forced OpenAI to do a lot of unnatural things”

      May 22, 2025

      How to get started with Microsoft Copilot on Windows 11

      May 22, 2025

      Microsoft blocks employees from sending emails that mention “Palestine” or “Gaza”

      May 22, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»News & Updates»Microsoft wants you and your business to ditch Office

    Microsoft wants you and your business to ditch Office

    April 2, 2025

    Microsoft says businesses should upgrade from Office to Microsoft 365, arguing that the subscription saves money in the long run and improves productivity.

    Source: Read More / Windows Central

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleElon Musk’s X might have a mole problem: “How could someone enumerate all Twitter user IDs, unless they were an employee?”
    Next Article I’ve become a big HP fan after reviewing this powerful and premium enterprise AI laptop

    Related Posts

    News & Updates

    Sam Altman says ChatGPT’s viral Ghibli effect “forced OpenAI to do a lot of unnatural things”

    May 22, 2025
    News & Updates

    How to get started with Microsoft Copilot on Windows 11

    May 22, 2025
    Leave A Reply Cancel Reply

    Hostinger

    Continue Reading

    NVDA Guide: Essential Tips for Accessibility Success

    Development

    Filter and Modify Data in One Go: JavaScript Best Practices

    Development

    Mozilla Formally Unveils its Rawr-Some New Logo

    Development

    CVE-2025-21459 – Microsoft Linksys Wireless Router Denial of Service

    Common Vulnerabilities and Exposures (CVEs)

    Highlights

    How to click on the list when it said the list has no attribute “click”?

    July 1, 2024

    from selenium import webdriver
    import time
    from selenium.webdriver.common.keys import Keys
    from selenium.webdriver.common.by import By
    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.support import expected_conditions as EC
    import random
    import select

    driver = webdriver.Chrome(‘ChromeDriver’)
    driver.get(“https://devbusiness.tunai.io/login”)
    time.sleep(2)
    driver.maximize_window()

    #log in credentials
    username = driver.find_element(By.NAME, “loginUsername”);
    username.send_keys(“dayon@tunai”);

    password = driver.find_element(By.NAME, “loginPassword”);
    password.send_keys(“12341234″);

    login = driver.find_element(By.XPATH,”//*[@id=’app’]/div/div/div/div/div/div[2]/form/div[4]/button”);
    login.submit();
    time.sleep(3)

    driver.get(“https://devbusiness.tunai.io/dashboard/my_salon_user”)
    time.sleep(3)

    randomUsername = random.choice([“dayon.salon3@tunai”,”dayonmanager@tunai”,”Dayon.der@tunai”])
    driver.find_element(By.XPATH, “//tbody[@role=’rowgroup’]/tr[@role=’row’]/td/a[text()='”+ randomUsername +”‘]”).click()
    print(“Username selected: “, randomUsername)
    time.sleep(5)

    driver.find_element(By.XPATH,”//*[@id=’page-content’]/div/div[3]/div/div[2]/div/div/div[2]/div/div[1]/header/a”).click()
    time.sleep(5)

    # Get the list of elements
    elements = driver.find_elements(By.CLASS_NAME,’custom-control-input’)

    # Select a random element from the list
    random_element = random.choice(elements)
    driver.execute_script(“arguments[0].click();”, random_element)

    # Click on the selected element
    random_element.click()
    print(“Element selected: “, random_element)
    time.sleep(5)

    driver.find_element(By.XPATH,”//*[@id=’accKey’]”).click()
    time.sleep(5)

    I’ve been add “argument.click[]”,”webdriver wait until EC to be clickable” but still showing “Element not intractable. What would be the other possible solution? Hope someone could clarify for me. Thanks and have a nice day.

    Google is talking to dolphins using Pixel phones and AI – and the video is delightful

    April 14, 2025

    Elon Musk teases developing “Grok Phone” if Apple integrates OpenAI’s ‘woke nanny AI spyware’ into its OS

    June 11, 2024

    Critical Flaw in ProjectSend Under Active Exploitation Against Public-Facing Servers

    November 27, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.