login
Forgot?
Login with Facebook

Don't have an account? Register one now!

Need Expert C# Programmer - Watin, Web Automation

Bids 
25
Avg Bid
$994 USD
CLOSED
  • Project ID:

    552548
  • Project Type:

    Fixed
  • Budget:

    $750-$1500 USD

Project Description:

Hi,

I'm looking for a C# programmer to work on my latest project,
this project will involve WatiN a lot!

Example Watin code:

this.ie.GoTo("http://blog.com/");
this.ie.TextField(Find.ById("user_login")).TypeText(this.request.get_VerificationEmail());
this.ie.TextField(Find.ById("user_pass")).TypeText(this.request.get_Password());
this.ie.Button(Find.ById("wp-submit")).Click();

foreach (Link link2 in this.ie.Links)
{
if (link2.Url.Contains("post-new.php"))
{
this.ie.Link(Find.ByUrl(link2.Url)).Click();
break;
}
}

this.ie.TextField(Find.ById("title")).TypeText(this.request.get_ArticleTitle());
this.ie.Frame(Find.ById("content_ifr")).HtmlDocument.body.innerHTML = this.request.get_ArticleBody();
this.ie.TextField(Find.ById("newtag")).TypeText(this.request.get_Keywords());
this.ie.Button(Find.ById("tagadd")).Click();
this.ie.Button(Find.ById("publish")).Click();

========================================================

Please only bid if you are familiar with the code above.
Also you must explain what the code above do in your bid.

Thanks

Skills required:

.NET, C Programming, C# Programming, Visual Basic, Web Scraping

Project posted by:

unknown0 Indonesia
(51 Reviews)

Last seen:

If you are the project creator or one of the bidders, please Log In for more options.


Awarded Bids

sby Indonesia
sby
Indonesia From Indonesia     Offline
  Foundation EUFreelance.com Member
 Accepted
$1500 in 3 days 
0
over 2 years ago
5.0

6.4

20 Reviews
73% Completion Rate
Please see PMB

All Bids ()

yousefla United States
yousefla
United States From United States     Offline
$995 in 10 days 
0
over 2 years ago
5.0

7.2

69 Reviews
88% Completion Rate
Hi, Please take a look at the PM. Thanks, Yousef
Hun1Ahpu Russian Federation
Hun1Ahpu
Russian Federation From Russian Federation     Offline
  General Freelancer Orientation (80%, 90th percentile)
$900 in 20 days 
0
over 2 years ago
5.0

7.0

67 Reviews
82% Completion Rate
hello. check pm please
HeoQue Norway
Guru.jpg
HeoQue
Norway From Norway     Offline
  General Freelancer Orientation (85%, 95th percentile)
  Foundation EUFreelance.com Member
$1500 in 21 days 
0
over 2 years ago
4.8

6.7

51 Reviews
74% Completion Rate
kindly check PM
srinichal India
pic.jpg
srinichal
India From India     Gold Member     Online
  Freelancer Orientation (90%, 100th percentile)
  General Freelancer Orientation (85%, 95th percentile)
$1500 in 30 days 
0
over 2 years ago
4.9

6.6

88 Reviews
57% Completion Rate
willing to work as I am familiar with watin
WhizPool Pakistan
Logo-Square copy.png
WhizPool
Pakistan From Pakistan     Gold Member     Online
  General Freelancer Orientation (90%, 98th percentile)
  Foundation EUFreelance.com Member
$1500 in 40 days 
0
over 2 years ago
5.0

6.3

12 Reviews
79% Completion Rate
Please check PMB
orderscout Germany
logo_FL.jpg
orderscout
Germany From Germany     Gold Member     Offline
$1000 in 30 days 
0
over 2 years ago
5.0

6.1

41 Reviews
81% Completion Rate
Hello Please check your PM.
sadam Ukraine
sadam
Ukraine From Ukraine     Offline
  Foundation EUFreelance.com Member
$750 in 10 days 
0
over 2 years ago
4.9

6.0

23 Reviews
81% Completion Rate
Hello, please see PMB
nmppatel United States
nmppatel
United States From United States     Offline
$1000 in 15 days 
0
over 2 years ago
4.9

5.1

28 Reviews
70% Completion Rate
I am IT professional with 10 yrs experience. I have very good experience with .Net, C#, VB.Net, VBA macros, Web Scrapping. I will provide quick & professional service.
tamrakar81 India
tamrakar81
India From India     Offline
  Freelancer Orientation (85%, 99th percentile)
  General Freelancer Orientation (85%, 95th percentile)
$750 in 2 days 
0
over 2 years ago
4.9

5.1

35 Reviews
72% Completion Rate
Hi, Please check PM Thanks Tamrakar
YashpalSingh123 India
Image0040(1).jpg
YashpalSingh123
India From India     Gold Member     Offline
$750 in 7 days 
0
over 2 years ago
4.8

4.8

9 Reviews
46% Completion Rate
Expert Computer Engineer, in ASP.net, C#, Can Start Work on Immediately effect.
msbatechie United States
msbatechie
United States From United States     Offline
$1500 in 10 days 
0
over 2 years ago
5.0

4.2

4 Reviews
56% Completion Rate
This Web Application Testing In .Net this.ie.GoTo("http://blog.com/"); Answer: opening http://blog.com/ site. this.ie.TextField(Find.ById("user_login")).TypeText(this.request.get_Verifica... more
This Web Application Testing In .Net this.ie.GoTo("http://blog.com/"); Answer: opening http://blog.com/ site. this.ie.TextField(Find.ById("user_login")).TypeText(this.request.get_VerificationEmail()); Answer: Going to assign an email from "this.request.get_VerificationEmail()" to "user_login" input html tag on http://blog.com/ webpage this.ie.TextField(Find.ById("user_pass")).TypeText(this.request.get_Password()); Answer: Going to assign a password from this.request.get_Password() to "user_pass" input html tag on http://blog.com/ webpage this.ie.Button(Find.ById("wp-submit")).Click(); Answer: Fire onclick event of "" foreach (Link link2 in this.ie.Links) { if (link2.Url.Contains("post-new.php")) { this.ie.Link(Find.ByUrl(link2.Url)).Click(); break; } } Answer: Above script is going to loop through all the links and look for if url contains "post-new.php" if found onclick evernt is going to fire that will open the link and come out of the foreach loop. this.ie.TextField(Find.ById("title")).TypeText(this.request.get_ArticleTitle()); Answer: Look for "title" tag by ID and assign the value of "this.request.get_ArticleTitle()" this.ie.Frame(Find.ById("content_ifr")).HtmlDocument.body.innerHTML = this.request.get_ArticleBody(); Answer: Look for iframe "content_ifr" and assign "this.request.get_ArticleTitle()" value using .innerHTML property. this.ie.TextField(Find.ById("newtag")).TypeText(this.request.get_Keywords()); Answer: Look for the "newtag" tag by id and assign this.request.get_Keywords() this.ie.Button(Find.ById("tagadd")).Click(); Answer: Look for "tagadd" tag by id and fire onclick event this.ie.Button(Find.ById("publish")).Click(); Answer: Look for "publish" tag by id and fire onclick event  less
Gm2009Software India
Gm2009Software
India From India     Offline
$750 in 5 days 
0
over 2 years ago
4.8

4.1

4 Reviews
83% Completion Rate
I am a Tech lead in a microsoft gold partner co. with 7+yrs exp in microsoft techs. please see PM
seospider Bangladesh
unlock1.png
seospider
Bangladesh From Bangladesh     Offline
  Freelancer Orientation (80%, 97th percentile)
  Foundation LimeExchange Member
$750 in 10 days 
0
over 2 years ago
5.0

3.7

3 Reviews
79% Completion Rate
I am prepare to give test on that
padang Indonesia
padang
Indonesia From Indonesia     Offline
  US English Level 1 (90%, 46th percentile)
  General Freelancer Orientation (95%, 100th percentile)
  Foundation EUFreelance.com Member
$800 in 10 days 
0
over 2 years ago
5.0

3.3

5 Reviews
48% Completion Rate
please check pmb :)
kshatria United States
kshatria
United States From United States     Offline
$750 in 5 days 
0
over 2 years ago
5.0

2.6

1 Review
50% Completion Rate
I will do it for $400 just as well. Why bother with this "watin"? I can do exactly the same thing for you using plain old Webbrowser control in a C# app. I have done plenty of such automation apps, can do ano... more
I will do it for $400 just as well. Why bother with this "watin"? I can do exactly the same thing for you using plain old Webbrowser control in a C# app. I have done plenty of such automation apps, can do another one for you too. If you really care, yes, I can learn "watin" too. We, Stanford techies, hack it with the Axe :-) http://en.wikipedia.org/wiki/Stanford_Axe . Cheers, Michael Lyubomirskiy less
talha48 Pakistan
logo_48x48x32.png
talha48
Pakistan From Pakistan     Offline
$750 in 1 day 
0
over 2 years ago
5.0

2.0

1 Review
100% Completion Rate
sir i know the code and tell me Your requiremetns. im willing to work with You. Regards Talha
nttech China
nttech
China From China     Offline
$800 in 20 days 
0
over 2 years ago
5.0

1.5

1 Review
85% Completion Rate
Please check your PM. Thanks.
InnoConsulting India
InnoConsulting
India From India     Offline
  Foundation LimeExchange Member
$750 in 10 days 
0
over 2 years ago
5.0

1.0

2 Reviews
16% Completion Rate
Please check PM for details.
karankumar80 India
karankumar80
India From India     Offline
$750 in 30 days 
0
over 2 years ago
0.0

0.0

0 Reviews
0% Completion Rate
Hello Sir/Mam, I read your requirements and I can do this job perfectly, because I have good experience with C#. And I can work with your code which you given as a sample. So please contact me for further disc... more
Hello Sir/Mam, I read your requirements and I can do this job perfectly, because I have good experience with C#. And I can work with your code which you given as a sample. So please contact me for further discussion on this project. Thanks. Karan Kumar less
kst3 Ukraine
logo.jpg
kst3
Ukraine From Ukraine     Offline
  Foundation EUFreelance.com Member
$1000 in 30 days 
0
over 2 years ago
0.0

0.0

0 Reviews
0% Completion Rate
Dear Sir, please look PM for details.
daarond United States
daarond
United States From United States     Offline
$1000 in 2 days 
0
over 2 years ago
Your bid request was very inspecific, but I assume it is a variation on the theme. You are navigating to blog.com, entering a username and password, then clicking a submit button. On the next page, you are clicking ... more
Your bid request was very inspecific, but I assume it is a variation on the theme. You are navigating to blog.com, entering a username and password, then clicking a submit button. On the next page, you are clicking for the first link containing "post-new.php", entering an article title, then setting a textarea within the frame in a very non-standard way. After entering some keywords, you click to add the tag and publish. You could replace the loop by using a simple find with a regex value and you can set a textarea with TextField to keep entry standard. I am a committer on the WatiN core. less
teampo2 Philippines
teampo2
Philippines From Philippines     Offline
$900 in 10 days 
0
over 2 years ago
0.0

0.0

1 Review
0% Completion Rate
please check your pm.
schaldaev Russian Federation
schaldaev
Russian Federation From Russian Federation     Offline
$1000 in 30 days 
0
over 2 years ago
This code emulates the user's work in IE. Logging on to blog and leave a post
vsviridov Russian Federation
vsviridov
Russian Federation From Russian Federation     Offline
$1200 in 30 days 
0
over 2 years ago
0.0

0.0

0 Reviews
100% Completion Rate
Hello, I am 3+ experienced C# programmer. This chunk of code used to test web application interface. I am not very familiar with mentioned WatiN application, but I a very familiar wilt testing scheme. I devel... more
Hello, I am 3+ experienced C# programmer. This chunk of code used to test web application interface. I am not very familiar with mentioned WatiN application, but I a very familiar wilt testing scheme. I developed the Fanfare clone application. Vlad less