Re: [pgAdmin4][RM3936] Feature tests failing intermittently for SQLeditor related test cases

Поиск
Список
Период
Сортировка
От Dave Page
Тема Re: [pgAdmin4][RM3936] Feature tests failing intermittently for SQLeditor related test cases
Дата
Msg-id CA+OCxowUyiAP7rrV1nttj4kpKUednObSkVYoEbhtMvqb0CV8Ng@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [pgAdmin4][RM3936] Feature tests failing intermittently for SQLeditor related test cases  (Aditya Toshniwal <aditya.toshniwal@enterprisedb.com>)
Ответы Re: [pgAdmin4][RM3936] Feature tests failing intermittently for SQLeditor related test cases  (Aditya Toshniwal <aditya.toshniwal@enterprisedb.com>)
Список pgadmin-hackers
On Mon, Jan 28, 2019 at 12:05 PM Aditya Toshniwal
<aditya.toshniwal@enterprisedb.com> wrote:
>
> Hi Dave,
>
> On Mon, Jan 28, 2019 at 5:01 PM Dave Page <dpage@pgadmin.org> wrote:
>>
>> Hi
>>
>> On Mon, Jan 28, 2019 at 7:00 AM Aditya Toshniwal
>> <aditya.toshniwal@enterprisedb.com> wrote:
>> >
>> > Hi Hackers,
>> >
>> > Attached is the patch to fix failing SQL editor related feature tests.
>> > The failure is occurring mostly because of send_keys function of selenium which sometimes does not input the
completetext. The change will use Codemirror javascript object to set the text.
 
>> >
>> > I have also added new args flag "--modules" which can be used after --pkg where you can test a specific module
fileunder the pkg. This is not so useful for build but definitely helpful for the developers.
 
>>
>> One of the most common failures I see is failure to fill in the
>> details on the Add Server dialogue (it might type half of an entry,
>> then just hang). Should we get rid of all uses of send_keys?
>
> Setting the text using javascript executor can be done. send_keys simulate an actual person,  so if you try to set a
disabledtext box using send_keys, it won't. Places where disabled fields doesn't matter, send_keys can be removed.
 

Can't we just do something like:

if input.disabled == false:
  input.value = 'Foo';
else:
  raise exception ....

-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Aditya Toshniwal
Дата:
Сообщение: Re: [pgAdmin4][RM3936] Feature tests failing intermittently for SQLeditor related test cases
Следующее
От: Aditya Toshniwal
Дата:
Сообщение: Re: [pgAdmin4][RM3936] Feature tests failing intermittently for SQLeditor related test cases