Questions tagged [seleniumbase]

Looking for answers to inquiries regarding SeleniumBase, a Python framework designed for Selenium testing? Look no further. With SeleniumBase, tests can be easily executed using pytest. Check it out here: https://github.com/seleniumbase/SeleniumBase

Locate an element by its TEXT using SeleniumBase

When using SeleniumBase, I have a requirement to click on an element that is identified as shown below: <span class="text"> Contato PF e PJ </span> The specific text inside the element (Contato PF e PJ) needs to be ...

Utilizing SelenuimBase to fetch a Tableau dashboard for downloading

I have been working on a script to automate the download of my Tableau Public visualization for a project. However, I am facing issues after clicking on the download button. from seleniumbase import BaseCase import pyautogui class Test(BaseCase): def test ...

Any suggestions on resolving the "script timeout" issue while running a script using Python's SeleniumBase Library?

Recently starting to use Python, I am currently using Python's seleniumbase library to scrape a website and need to periodically run this fetch script. While experimenting, I encountered a script timeout error when the response time exceeded around 95 ...