requestium icon indicating copy to clipboard operation
requestium copied to clipboard

Integration layer between Requests and Selenium for automation of web actions.

Results 15 requestium issues
Sort by recently updated
recently updated
newest added

At the Selenium Project we want to collaborate with you and work together to improve the WebDriver ecosystem. We would like to meet you, understand your pain points, and discuss...

In recent [commits](https://github.com/tryolabs/requestium/commit/4742f8f7443de7e1a380a469cfc2f8e5a47988c3), an interesting feature has appeared - the use of a Selenium webdriver outside Requestium. But to do this, I have to do some cumbersome acrobatics in my...

enhancement

https://github.com/tryolabs/requestium/issues/58

Traceback (most recent call last): File "e:\moi soft\4ej\check3.py", line 82, in s.driver.ensure_add_cookie(cook, override_domain='') File "C:\Users\Micha\AppData\Local\Programs\Python\Python310\lib\site-packages\requestium\requestium.py", line 279, in ensure_add_cookie self.add_cookie(cookie) File "C:\Users\Micha\AppData\Local\Programs\Python\Python310\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 894, in add_cookie self.execute(Command.ADD_COOKIE, {'cookie': cookie_dict}) File...

I found that the request header is not synchronization when I used 's.headers.update' to update a header,and there is a question that s.get() method works well,but the s.driver.get() method does...

enhancement

driver = webdriver.Remote(command_executor='http://xxx.xxx.xxx.xxx:4444/wd/hub', desired_capabilities=chrome_options.to_capabilities()) How to implement webdriver.Remote() function?

enhancement

If I start a requestium instance using a proxy applied for the request session like: `s.proxies.update({'http': 'https://10.11.4.254:3128', 'https': 'https://10.11.4.252:3128'})` The proxy does not seem to apply for the selenium instance....

enhancement

s = Session(webdriver_path='./chromedriver', browser='chrome', default_timeout=15, webdriver_options={ 'arguments': ['headless'] }) a = s.get('https://www.baidu.com/') print(a.encoding) **####### after setting the encoding to utf-8 a.text is OK, but a.xpath is still unreadable code..** a.encoding...

bug

"It also allows you to override the domain before adding it, and avoid making this GET" How do I avoid making GET to the domain when I transfer session cookies...

This changes from the MixIn pattern to direct inheritance (since it only inherits from one class) and adds type hints to pretty much every arg and return. Since the MixIn...