Automatically fill multi-page forms in chrome extension - forms

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.

Related

How can i link submit button on gravity form to a popup created with elementor

I am new and i do have a question regarding gravity forms and elementor.
I have created and designed a very nice popup window as template with elementor and I would like to use it with gravity submission form.
Basically it should be displayed as a popup window when submit button is triggered.
does anyone have an idea how I can do it?
thank you so much in advance
Did you try to use the Dynamic option in a link? It will display a list of options and if i'm correct it will give you an option to choose Elementor Pop-up!

facebook authetication issue using like box

I'm using the facebook like box in a project. The issue there is that when I'm log out and click on the like button, it open a page asking me to log in, that's fine, but if I close that page and click again on the like button, that page it's not open again, the only way to solve the issue, it's refreshing the page.
Here is a video to show the issue http://screencast.com/t/z8fNAGDqYuS, every single time that the cursor is on the like button I'm making click on it, and it's not working.
Does anyone know how to solve that issue?
Thanks in advance

selenium: web form submitting

I have this task as a homework for interview - to test the webpage of popular site. Got a pop up form with some text in the fields. The task is to check is there are fields has been changed.
The page constructed that way, doesent matter if the data changed, popup window just closed with no additional text about it. I have no idea how to deal with it. Is there any commands in selenium checking, if the form has been sent?
add1
This is a PopUp changing profile window. It is shown below with my translations as the red font.
It is obvious, when this window opens, some values are already in the textfields (that is ur name/surname that u've entered before).
When u press the save button, this page checks if the data been changed since this window been opened (did u really changed anything).
The html code of "save" button has been shown on the pic2. U can see javaScript listener on the save button. There are somewhere must be a JS code, that checks if the data been changed and sends the form, and canceling the form sending, if there's no changing.
My Goal is to check using selenium, if the form has been sent.

How to get all the pages validated, not just the current one, when submitting a form?

First I created a form in Orbeon Forms with Form Builder. Next I made it a multi-page form as described in Create a wizard or multi-page form with Form Builder.
The problem I'm facing is that when submitting the form, validation only occurs on the currently visible sections. When submitting, I would like all sections to be validated even though only one section may be visible. What would be the best way to achieve this?
I would recommend you change the code of your "Next" button so it doesn't switch to the following page if there are errors on the current page. You can do so by adding an if "guard" on the <xforms:setvalue> inside the "Next" button, that reads:
if="xxforms:instance('fr-error-summary-instance')/valid = 'true'"
This will also make things easier for users: if you let them navigate to page 2 while there are errors on page 1, when they try to save while on page 2, you will somehow have to tell them that the error is on a previous page, and provide a way for them to navigate to that page.

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....