I am making a bot which visits to a specific url, give the input in form and submit it by clicking to submit button...
Let me explain you my situation. When I start my bot, firstly it visits the URL, after web page is loaded, I have to check one radio button manually there and after this I press submit button (windows form control button to fill all fields of web page and submit it also by using invoke click method) to submit form.
I am using Web browser control (coding in C#.NET windows form) and the problem is when I click on a radio button, a pop up window pops up with the heading "Script Error" and says
Below is the tag of radio button (on which error pops up) which I copied by using IE development tool.
<input name="array(BlastDatabaseType)" onchange="changeQuestion(); changeAlgorithms();"
type="radio" value="Proteins"/>
This error don't occur on normal web browser. I want to solve this error not to hide.