Franco M

Results 150 comments of Franco M

This happened like 3 or 4 PRs ago or maybe I didn't realize it.

This feature is particularly bugged, I think that's also the reason why cops come in as passengers instead of arresting you.

Grand Theft Auto: Vice City uses Direct3D 8 (d3d8), not Direct3D 9 (d3d9). The title is incorrect.

That is the key ``` def switch_frame(browser, iframe) -> Tab: iframe: Tab = next( filter( lambda x: str(x.target.target_id) == str(iframe.frame_id), browser.targets ) ) iframe.websocket_url = iframe.websocket_url.replace("iframe", "page") return iframe ```...

Contact with me [email protected]. I have been making bots since 2018 and I have a diploma in data analysis and programming with quite advanced knowledge in Python. I also work...

> The code for taking control of existing Chrome browsers via the `remote-debugging-port` is here: > > **[#3354 (comment)](https://github.com/seleniumbase/SeleniumBase/issues/3354#issuecomment-2557709036)** So we don't need chromedriver anymore? Like nodriver or Selenium driverless?

the original func have 'resuts =' instead items

There is still some work to be done.

modify core\tab.py: ``` from __future__ import annotations import asyncio import json import logging import pathlib import typing import warnings from typing import List, Union, Optional, Tuple import nodriver.core.browser from ....

``` import asyncio import nodriver as uc async def main(): browser = await uc.start() tab_instance = await browser.get('https://www.google.com/') await asyncio.sleep(1) keyboard_instance = tab_instance.keyboard await (await tab_instance.find('//input[1]')).click() await keyboard_instance.type('Hello World!') await...