a-selenium-click-on-coords


Namea-selenium-click-on-coords JSON
Version 0.10 PyPI version JSON
download
home_pagehttps://github.com/hansalemaos/a_selenium_click_on_coords
SummarySelenium mouse clicks on x,y coordinates
upload_time2023-01-01 12:30:56
maintainer
docs_urlNone
authorJohannes Fischer
requires_python
licenseMIT
keywords selenium coordinates clicks
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Selenium mouse clicks on x,y coordinates 

```python
# Tested with:
# https://github.com/ultrafunkamsterdam/undetected-chromedriver
# Python 3.9.13
# Windows 10


$pip install a-selenium-click-on-coords

from auto_download_undetected_chromedriver import download_undetected_chromedriver
import undetected_chromedriver as uc
from time import sleep
from a_selenium_click_on_coords import click_on_coordinates
if __name__ == "__main__":
    folderchromedriver = "f:\\seleniumdriver2"
    path = download_undetected_chromedriver(
        folder_path_for_exe=folderchromedriver, undetected=True
    )
    driver = uc.Chrome(driver_executable_path=path)
    driver.get(r"https://github.com/hansalemaos/a_cv2_easy_resize")
    sleep(2)
    click_on_coordinates(driver,x=100,y=100, script_timeout=10)
    
```





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hansalemaos/a_selenium_click_on_coords",
    "name": "a-selenium-click-on-coords",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Selenium,coordinates,clicks",
    "author": "Johannes Fischer",
    "author_email": "<aulasparticularesdealemaosp@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/1c/ef/5904021ad4e5269d13f93ddac16cb3471e39a991709ffe7831236751a713/a_selenium_click_on_coords-0.10.tar.gz",
    "platform": null,
    "description": "\n# Selenium mouse clicks on x,y coordinates \n\n```python\n# Tested with:\n# https://github.com/ultrafunkamsterdam/undetected-chromedriver\n# Python 3.9.13\n# Windows 10\n\n\n$pip install a-selenium-click-on-coords\n\nfrom auto_download_undetected_chromedriver import download_undetected_chromedriver\nimport undetected_chromedriver as uc\nfrom time import sleep\nfrom a_selenium_click_on_coords import click_on_coordinates\nif __name__ == \"__main__\":\n    folderchromedriver = \"f:\\\\seleniumdriver2\"\n    path = download_undetected_chromedriver(\n        folder_path_for_exe=folderchromedriver, undetected=True\n    )\n    driver = uc.Chrome(driver_executable_path=path)\n    driver.get(r\"https://github.com/hansalemaos/a_cv2_easy_resize\")\n    sleep(2)\n    click_on_coordinates(driver,x=100,y=100, script_timeout=10)\n    \n```\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Selenium mouse clicks on x,y coordinates",
    "version": "0.10",
    "split_keywords": [
        "selenium",
        "coordinates",
        "clicks"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "c6da0ae90944d40e20b7e69270ddd139",
                "sha256": "64161c74603d8e1e305c61bc442d8bfdf5931d9a38f685393fc12d3af68dcd63"
            },
            "downloads": -1,
            "filename": "a_selenium_click_on_coords-0.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c6da0ae90944d40e20b7e69270ddd139",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 5109,
            "upload_time": "2023-01-01T12:30:55",
            "upload_time_iso_8601": "2023-01-01T12:30:55.490174Z",
            "url": "https://files.pythonhosted.org/packages/fc/58/37d6e558952610e5658c104c3b2e505ca3723f74d2fcb33dee18f84bcac2/a_selenium_click_on_coords-0.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8a59161a7f65b9bcde9f6a38649359b7",
                "sha256": "98e031f285fa6398ea0f65ac866078fc255b8d1350fa6abceda848aecd674495"
            },
            "downloads": -1,
            "filename": "a_selenium_click_on_coords-0.10.tar.gz",
            "has_sig": false,
            "md5_digest": "8a59161a7f65b9bcde9f6a38649359b7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3508,
            "upload_time": "2023-01-01T12:30:56",
            "upload_time_iso_8601": "2023-01-01T12:30:56.709957Z",
            "url": "https://files.pythonhosted.org/packages/1c/ef/5904021ad4e5269d13f93ddac16cb3471e39a991709ffe7831236751a713/a_selenium_click_on_coords-0.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-01 12:30:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "hansalemaos",
    "github_project": "a_selenium_click_on_coords",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "a-selenium-click-on-coords"
}
        
Elapsed time: 0.03967s