How can I handle Excel Protocol popup in protractor? - protractor

After clicking on Excel document name in application, a Excel protocol popup appears. How can I handle that popup or how can i get the text of that popup.
Note: I tried using alert in protractor but it's not working.

Related

Automatically fill multi-page forms in chrome extension

I'm working on a cross-pages webform autofill project. Now I can use popup to get data produced by background.js, and then send message to content.js to fill the first page form. However, when progrmatically clicked the "save and continue" button to another page, nothing happened.
Anyone has some ideas about what happened after the click and how to work it out. Thanks.

I'd like to add an event listener to a custom column definition in ag-grid

I need to add an event listener to an ag-grid header that fires when enter is pressed only when the column is currently focused in ag-grid. The reason for this is because I'm trying to open a custom modal. I already have it firing on an event click of the button I created. However, this is not accessible, so I need to be able to tab to it and then press enter to open the modal.
Currently I am using the headerComponentParams: template: to render the html necessary in the header.

How To Select Value From Modal PopUp In Katalon Studio?

I am trying to automate the registration page by recording with Katalon studio and try to read data from excel but value selection from the modal popup is not working. I have attached the 2 images. Can anyone please help me with how to select the value from modal popup?

cellEditing plugin for ExtJS 4 causes 'event is undefined' error when closing tab panel tab

I have a grid in a tabpanel. I click a row in the grid and a new tabpanel opens with details for the clicked item. The details on the new tab opened can be edited and then sent back to the server through CRUD routines. I am using the cellEditing plugin, and it seems to be working fine to edit the cell, but when I close the window after performing edits I get an error "event is undefined' Why might this be occurring? Is there a way to edit a cell in a grid without using the cellEditing plugin? ...or maybe a way to fix the plugin to get it to work? I am using the plugin in the Ext.apply section of my initComponent for the grid.
I am using ext-all-debug.js and the error looks to be coming from an area where a function call is for 'closeListener', from line 13367 in ext-all-debg.js I do not believe I have any listeners on the page, so why is this error coming up on tab close?

AutoComplete does not save when there's a postback before Submit

I have a very simple asp.net form.
a text box,
a dropdownlist with autopostback,
a submit button
now if i type in some value into the textbox
and then select an item in the dropdown which causes a page postback.
then click on submit button
the value in the text box does not get saved into the autocomplete data store.
if i do the opposite.
select an item from the dropdown which will cause a page postback.
type in some values in the textbox.
click submit.
the value is saved for the autocomplete.
I think this may have something to do with the page life cycle and the viewstate. but how do i get around this issue? I'm using IE8.
I have tried the AutoCompleteSaveForm command. but it does not work if there's a postback immediately after the execution of it.
Use this for IE:
if($.browser.msie){window.external.AutoCompleteSaveForm(FormName)};
It does not work for Firefox and I'm trying to find the answer for that....