[Solved] How to click a button on a webpage?

Solved my issue. I came up with something similar to the above poster. $oLinks = _IETagNameGetCollection($oIE, “input”) For $oLink In $oLinks If String($oLink.type) = “submit” And String($oLink.value) = “Log On” Then _IEAction($oLink, “click”) ExitLoop EndIf Next 0 solved How to click a button on a webpage?

[Solved] my website is a disaster on IE 9 and less [closed]

It looks like you need a doctype http://validator.w3.org/check?uri=http%3A%2F%2Fdev.ux-pm.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0 This will probably clear up quite a few issues with things looking wrong on older versions of IE but this won’t necessarily fix everything. Validating is not a cure all but I do find that the more compliant the code is then the less likely bugs occur. … Read more

[Solved] css3 works just on google

Internet explorer and Firefox use the standard extension rather than the webkit extension for animation. You need to add the standard css as well as the webkit vendor extension which would change your css to: #loading { margin: 80px auto; position: relative; width: 100px; height: 100px; -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; background: #ccc; font: … Read more

[Solved] How to start internet explorer without any add-ons except flash?

Here is the autoit code: ; Toolbar Kontrolü Başla ; 64 bit başla if $mimari == 64 Then For $i = 1 to 100 $var = RegEnumVal(“HKLM64\SOFTWARE\Microsoft\Internet Explorer\Toolbar”, $i) If @error <> 0 Then ExitLoop $read = RegRead(“HKLM64\SOFTWARE\Microsoft\Internet Explorer\Toolbar”, $var) $result_no = StringInStr($var, “Locked”) $result_yes = StringInStr($var, “-“) if $result_no == 0 and $result_yes > … Read more