telenium icon indicating copy to clipboard operation
telenium copied to clipboard

Automation for Kivy Application

Results 17 telenium issues
Sort by recently updated
recently updated
newest added

I was testing mine app that has a list of widgets of OneLineListItem, to know which one to click I choose to select by text it contains, in my case...

Hello as i am creating test cases for kivy app. so in my application there is a navigation drawer and i am trying to access the xpath of the navigation...

When using the `select()` function, the provided path cannot necessarily be used for a subsequent `select()` (or `getattr()`, etc) and will not properly select any items. This appears to arise...

### Description Sending an `app_quit` request often causes a remote disconnection. This is no surprise. It's simply impossible for the app to send a proper response if it's not running...

### Description `TeleniumTestCase` refuses to communicate with app because `get_token` request returns `None`. ``` @classmethod def start_process(cls): ... # ensure the telenium we are connected are the same as the...

### Description When using `TeleniumTestCase`'s default `cmd_entrypoint` value (`[main.py]`) we run into a problem at the following method call. ``` @classmethod def start_desktop_process(cls, cmd, env): cwd = os.path.dirname(cls.cmd_entrypoint[0]) cls.process =...

### Description Hello, this is probably more of a usage issue so you are free to redirect me elsewhere if need be. I am running my app (see `main.py`) on...

I am trying to write unit tests and get items by id like that: self.cli.setattr("//TextInput[@id = "new_user_email]", "text", "[email protected]") but telenium can not to find item this way.

I am using `drag()` method for scrolling a list of items, and then using `click_on()` to click on an specific item but the `drag()` method scrolls the list upto last...