| View previous topic :: View next topic |
| Author |
Message |
Coldie ;] Guest
|
Posted: Thu Jul 28, 2011 1:53 pm Post subject: |
|
|
| konr wrote: | | Coldie ;] wrote: | | Could you say; 'Marko please do this for me, It'd be the greatest amount of help! I'd be kindly indebted to you if you do it, please.' | Nah you're a faggot. |
One would say the same about your outlook of life.
|
|
| Back to top |
|
 |
1929394839292057839194958 Grandmaster Cheater Supreme
Reputation: 130
Joined: 22 Dec 2006 Posts: 1509
|
Posted: Thu Jul 28, 2011 3:00 pm Post subject: |
|
|
| Coldie ;] wrote: | | konr wrote: | | Coldie ;] wrote: | | Could you say; 'Marko please do this for me, It'd be the greatest amount of help! I'd be kindly indebted to you if you do it, please.' | Nah you're a faggot. |
One would say the same about your outlook of life. | My outlook on life is a faggot? Good job.
|
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Thu Jul 28, 2011 5:28 pm Post subject: |
|
|
| My outlook is 2010
|
|
| Back to top |
|
 |
1929394839292057839194958 Grandmaster Cheater Supreme
Reputation: 130
Joined: 22 Dec 2006 Posts: 1509
|
Posted: Thu Jul 28, 2011 6:10 pm Post subject: |
|
|
Last edited by 1929394839292057839194958 on Thu Jul 28, 2011 6:11 pm; edited 1 time in total |
|
| Back to top |
|
 |
Mi/c/healRein How do I cheat?
Reputation: 24
Joined: 02 Jul 2008 Posts: 0 Location: Louisiana
|
Posted: Thu Jul 28, 2011 6:11 pm Post subject: |
|
|
| konr wrote: | | [img]http://www.expertsguys.com/image.axd?picture=2010%2F2%2FOutlook2010_256_2.png[/img] |
durr hurr
_________________
 
 | [SSCA]Nevergreen wrote: | | Somebody warm me up with their body, preferably MichealRein without pants on. |
|
|
| Back to top |
|
 |
Jefre. Expert Cheater
Reputation: 22
Joined: 28 Dec 2008 Posts: 130 Location: Canada
|
Posted: Thu Jul 28, 2011 9:20 pm Post subject: |
|
|
Jefre
Mendez
[email protected]
_________________
|
|
| Back to top |
|
 |
Moments Grandmaster Cheater Supreme
Reputation: 17
Joined: 20 Mar 2008 Posts: 1196
|
Posted: Fri Jul 29, 2011 5:20 am Post subject: |
|
|
| Slugsnack wrote: | | My outlook is 2010 | /laugh
|
|
| Back to top |
|
 |
1929394839292057839194958 Grandmaster Cheater Supreme
Reputation: 130
Joined: 22 Dec 2006 Posts: 1509
|
Posted: Sun Jul 31, 2011 4:11 pm Post subject: |
|
|
| Do this, please :L
|
|
| Back to top |
|
 |
InternetIsSeriousBusiness Grandmaster Cheater Supreme
Reputation: 8
Joined: 12 Jul 2010 Posts: 1268
|
|
| Back to top |
|
 |
Mi/c/healRein How do I cheat?
Reputation: 24
Joined: 02 Jul 2008 Posts: 0 Location: Louisiana
|
Posted: Sun Jul 31, 2011 4:25 pm Post subject: |
|
|
| konr wrote: | | Do this, please :L |
It's still broken for me
What is it, even?
_________________
 
 | [SSCA]Nevergreen wrote: | | Somebody warm me up with their body, preferably MichealRein without pants on. |
|
|
| Back to top |
|
 |
1929394839292057839194958 Grandmaster Cheater Supreme
Reputation: 130
Joined: 22 Dec 2006 Posts: 1509
|
Posted: Sun Jul 31, 2011 4:30 pm Post subject: |
|
|
| Mi/c/healRein wrote: | | konr wrote: | | Do this, please :L |
It's still broken for me
What is it, even? | survey thingy for work
|
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Sun Jul 31, 2011 4:34 pm Post subject: |
|
|
you're out of luck unfortunately. i didn't know the page involved flash. selenium does not allow interaction with flash. i knocked up some code in the last few mins which does account creation. idk if that's useful for you at all.
extract the jar and exe to same folder. then run by double-clicking the jar or run cmd and then navigate to where it is and type "java -jar lala.jar"
http://localhostr.com/file/dz0wjlB/lala.rar
the delays between pages are tweakable. you can have a process of account creation in under 3 seconds fairly easily
at the moment it doesn't create within the domain you want but if you want me to change it that's an easy process. or if you want to do it yourself here's the source:
| Code: | package goon;
import java.io.File;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.interactions.Actions;
public class GoOn {
public static void main(String[] args) throws Exception {
System.setProperty("webdriver.chrome.driver",
new File( new File(".").getParent(), "chromedriver.exe" ).toString() );
WebDriver driver = new ChromeDriver();
driver.manage().timeouts().implicitlyWait( 10, TimeUnit.SECONDS );
driver.get("https://www.go-on.co.uk/user/register");
Actions builder = new Actions( driver );
builder.sendKeys( driver.findElement( By.id("edit-pass") ), "password123" ).
sendKeys( driver.findElement( By.id("edit-pass-confirm") ), "password123" ).
sendKeys( driver.findElement( By.id("edit-first-name") ), "lala" ).
sendKeys( driver.findElement( By.id("edit-surname") ), "lala2" ).
click( driver.findElement( By.id("nextstep") ) ).perform();
Thread.sleep( 5000 );
builder.sendKeys( driver.findElement( By.id("edit-mail") ), "lala" + Math.random() * 100 + "@lala.com" ).
click( driver.findElement( By.id("edit-submit") ) ).perform();
Thread.sleep( 5000 );
builder.click( driver.findElement( By.name("Online Basics") ) ).perform();
Thread.sleep( 10000 );
driver.quit();
}
}
|
sorry
|
|
| Back to top |
|
 |
the the the Master Cheater
Reputation: 46
Joined: 15 Jun 2008 Posts: 429
|
Posted: Sun Jul 31, 2011 4:36 pm Post subject: |
|
|
| Whats in it for me?
|
|
| Back to top |
|
 |
1929394839292057839194958 Grandmaster Cheater Supreme
Reputation: 130
Joined: 22 Dec 2006 Posts: 1509
|
Posted: Sun Jul 31, 2011 6:49 pm Post subject: |
|
|
| That won't be much of a help tbh, the problem is the having to wait for 30 minutes and we forget or whatever. If we could go through it all in second without an issue that would be easy, but waiting 30 minutes makes us have to find other shit to do, which makes us forget it etc/.etc/., so yeah. Cheers for trying anyway mate.
|
|
| Back to top |
|
 |
the the the Master Cheater
Reputation: 46
Joined: 15 Jun 2008 Posts: 429
|
Posted: Sun Jul 31, 2011 7:00 pm Post subject: |
|
|
Ok I am waiting 30 minutes right now with cubetimer.com
also my email is [email protected]
|
|
| Back to top |
|
 |
|